query-dbcdb298ca888eba2118906f9d7cfcfc

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:Q111136998 . ?item p:P31 ?value . ?value ps:P31 ?nature . 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 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:Q111136998 .
  ?item p:P31 ?value .
  ?value ps:P31 ?nature .
  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") c3(["wd:Q111136998"]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 -->v2--> v3 v3 --"prov:wasDerivedFrom"--> v4 v4 --"p:reference/P248"--> c3 v1 --"p:P31"--> v5 v5 --"p:statement/P31"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end