I have a problem understanding simple SPARQL demo with GraphDB:
PREFIX rd: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schem: <http://schema.org/ns#>
SELECT *
WHERE {
BIND(?mybind AS ?id)
?id rd:label ?label.
{ ?id a schem:TouristAttraction}
}
ORDER BY ASC(?label)
Do check it with GraphDB REST RDF4J API $<varname>
http://server01.local:7200/repositories/01?query=QUERY...&mybind=urn:uuid:0053083d-a9dc-45d4-9702-700633df563b
and
http://server01.local:7200/repositories/01?query=QUERY...
I get the same result. The bind didn't work.
What am I doing wrong?