query-199dc9d02a8d3b0534fe2f120999439c
Is there a chance, that no items should be returned?
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?pr ?prLabel
WHERE
{
?item ?p wd:Q1651051 .
?pr wikibase:directClaim ?p
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?p")
v3("?pr"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en,en"]):::literal
c1(["wd:Q1651051"]):::iri
v1 -->v2--> c1
v3 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end