query-e1acc6cd9b330644899b635d68e3b488
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE
{
values ?item { wd:Q69936 }
?item wdt:P106 wd:Q10873124.
?item wdt:P1440 ?fide .
# MINUS { ?item p:P1532 ?P1532statement.
# ?P1532statement prov:wasDerivedFrom ?refnode.
# ?refnode pr:P248 [].}
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;
v2("?fide")
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q10873124"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q69936"])
bind00 --> bind0
v1 --"p:direct/P106"--> c2
v1 --"p:direct/P1440"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end