query-a9519f84b8c7e0aef927ccaf71e84c9c

rq turtle/ttl

on the new SDC query service. but it does not work. Closer look shows that the query

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
SELECT ?wikidataItem ?target
WHERE 
{
  VALUES ?wikidataItem { wd:Q57935507 }
  OPTIONAL { ?wikidataItem owl:sameAs ?target. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?target"):::projected v1("?wikidataItem"):::projected bind0[/VALUES ?wikidataItem/] bind0-->v1 bind00(["wd:Q57935507"]) bind00 --> bind0 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."owl:sameAs".-> v2 end