query-06d4f6e287fec436e7242e858989632c

rq turtle/ttl

title:list all items (and statements) where the heuristic Q783521 is used in reference SELECT ?item ?itemLabel ?statement WHERE { ?item ?p1 ?statement. ?statement a wikibase:BestRank. ?statement ?p ?ref. ?ref pr:P887 wd:Q783521. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:list all items (and statements) where the heuristic Q783521 is used in reference
SELECT ?item ?itemLabel ?statement WHERE {
  ?item ?p1 ?statement.
  ?statement a wikibase:BestRank.
  ?statement ?p ?ref.
  ?ref pr:P887 wd:Q783521.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v4("?p") v2("?p1") v5("?ref") v3("?statement"):::projected c6(["bd:serviceParam"]):::iri c4(["wd:Q783521"]):::iri c2(["wikibase:BestRank"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 -->v2--> v3 v3 --"a"--> c2 v3 -->v4--> v5 v5 --"pr:P887"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end