Sparql request for rdf: id
2 answers
In fact, rdf: id is the resource URI itself. You can use the SPARQL FILTER clause to filter your result, or you can directly insert the URI into the WHERE clause of your query, for example
<myURI> ex:name ?name .
+3
source to share