query-a0b8289b6dde796824e86ad36d33aca4

rq turtle/ttl

tous les éléments avec une référence spécifique SELECT DISTINCT ?item ?itemLabel ?natureLabel { ?item ?prop ?statement . ?statement prov:wasDerivedFrom ?ref. ?ref pr:P248 wd:Q112601887 . ?item p:P31 ?value . ?value ps:P31 ?nature . ?item wdt:P463 wd:Q3423698 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
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#>
#tous les éléments avec une référence spécifique
SELECT DISTINCT ?item ?itemLabel ?natureLabel {
  ?item ?prop ?statement .
  ?statement prov:wasDerivedFrom ?ref.
  ?ref pr:P248 wd:Q112601887 .
  ?item p:P31 ?value .
  ?value ps:P31 ?nature .
 ?item wdt:P463 wd:Q3423698 .
  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 v6("?nature") v2("?prop") v4("?ref") v3("?statement") v5("?value") c7(["wd:Q3423698"]):::iri c9(["bd:serviceParam"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q112601887"]):::iri v1 -->v2--> v3 v3 --"prov:wasDerivedFrom"--> v4 v4 --"p:reference/P248"--> c3 v1 --"p:P31"--> v5 v5 --"p:statement/P31"--> v6 v1 --"p:direct/P463"--> c7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end