query-f8fbb1cbb393989d450560be1bdb2b8b

rq turtle/ttl

Trouve tous les éléments connus de Wikidata qui sont des "archives" (ou l'une de ses sous-classes) et qui ont pour localisation (ou localisation de la localisation) la valeur XY. SELECT ?item ?itemLabel ?locLabel ?loc2Label ?ISILLabel ?GLAMLabel WHERE { ?item wdt:P31/wdt:P279* wd:Q166118; (p:P131|ps:P131)+ wd:Q48079. OPTIONAL { ?item wdt:P791 ?ISIL} OPTIONAL { ?item wdt:P3066 ?GLAM } OPTIONAL { ?item wdt:P131 ?loc } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". } } ORDER BY DESC(?GLAMLabel)

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 p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Trouve tous les éléments connus de Wikidata qui sont des "archives" (ou l'une de ses sous-classes) et qui ont pour localisation (ou localisation de la localisation) la valeur XY.
SELECT ?item ?itemLabel ?locLabel ?loc2Label ?ISILLabel ?GLAMLabel
WHERE 
{
 ?item wdt:P31/wdt:P279* wd:Q166118;
       (p:P131|ps:P131)+ wd:Q48079.
  OPTIONAL
  { ?item wdt:P791 ?ISIL}
  OPTIONAL {
?item wdt:P3066 ?GLAM
}
  OPTIONAL {
?item wdt:P131 ?loc
}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". }
}
ORDER BY DESC(?GLAMLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?GLAM") v1("?GLAMLabel"):::projected v3("?ISIL") v2("?item"):::projected v5("?loc") a1((" ")) c5(["wd:Q48079"]):::iri c3(["wd:Q166118"]):::iri c11(["bd:serviceParam"]):::iri c13(["#91;AUTO_LANGUAGE#93;,fr"]):::literal v2 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v2 --"p:statement/P131"--> c5 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"p:P131"--> c5 end union0r <== or ==> union0l end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:direct/P791".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:direct/P3066".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:direct/P131".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end