I want to check if the graph exists in my Fuseki server and if it does, it should return a message like
The graph exists
I want to check if the graph exists in my Fuseki server and if it does, it should return a message like
The graph exists
Copyright © 2021 Jogjafile Inc.
You can do this with an ASK query. For example, to check that a named graph
http://example.org/graph1
exists, you can do this:It will return
true
if it exists,false
otherwise.