I try to use SERVICE
keyword in SPARQL query on website having this query link
I found about SERVICE keyword here : this link.
My query is which I already give link above to execute:
SELECT *
WHERE {
?x a ?name .
SERVICE ?name
{ ?p a ?q . }
}
But it is not execting my SPARQL query and giving error why?
I tried to change ?p
to ?name
but it still not working.