query-7e8459e687d45a78a4e6659e028510ef

rq turtle/ttl

Description des groupements intercommunaux neuchâtelois

SELECT DISTINCT ?item ?Groupement ?Acronyme ?Siège ?URL ?Création ?Dissolution ?Successeur ?successeur WHERE { ?item wdt:P31/wdt:P279* wd:Q65934161. OPTIONAL {?item wdt:P856 ?URL. } #cherche le site web s'il existe OPTIONAL {?item wdt:P1813 ?Acronyme .}
OPTIONAL {?item wdt:P159 ?siege .} OPTIONAL {?item wdt:P571 ?datecreation.} BIND (year(?datecreation) AS ?Création) #cherche la date de création si elle existe OPTIONAL {?item wdt:P576 ?datedissolution.} BIND (year(?datedissolution) AS ?Dissolution) #cherche la date de dissolution si elle existe OPTIONAL {?item wdt:P1366 ?successeur.} #cherche la nouvelle entité si le groupement a été remplacé

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr" . ?item rdfs:label ?Groupement.

?item rdfs:description ?Description.

?siege rdfs:label ?Siège.
?successeur rdfs:label ?Successeur.

} } ORDER BY ?Groupement

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Description des groupements intercommunaux neuchâtelois

SELECT DISTINCT ?item ?Groupement ?Acronyme ?Siège ?URL ?Création ?Dissolution ?Successeur ?successeur
WHERE {
  ?item wdt:P31/wdt:P279* wd:Q65934161.
  OPTIONAL {?item wdt:P856 ?URL. } #cherche le site web s'il existe
  OPTIONAL {?item wdt:P1813 ?Acronyme .}   
  OPTIONAL {?item wdt:P159 ?siege .} 
  OPTIONAL {?item wdt:P571 ?datecreation.} BIND (year(?datecreation) AS ?Création) #cherche la date de création si elle existe
  OPTIONAL {?item wdt:P576 ?datedissolution.} BIND (year(?datedissolution) AS ?Dissolution) #cherche la date de dissolution si elle existe
  OPTIONAL {?item wdt:P1366 ?successeur.} #cherche la nouvelle entité si le groupement a été remplacé 


SERVICE wikibase:label {
    bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr" . 
    ?item rdfs:label ?Groupement.
#    ?item rdfs:description ?Description.
    ?siege rdfs:label ?Siège.
    ?successeur rdfs:label ?Successeur.
  }
}
ORDER BY ?Groupement

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?Acronyme"):::projected v7("?Création"):::projected v9("?Dissolution"):::projected v1("?Groupement"):::projected v11("?Siège"):::projected v12("?Successeur"):::projected v3("?URL"):::projected v6("?datecreation") v8("?datedissolution") v2("?item"):::projected v5("?siege") v10("?successeur"):::projected a1((" ")) c3(["wd:Q65934161"]):::iri c11(["bd:serviceParam"]):::iri c13(["#91;AUTO_LANGUAGE#93;,fr"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P856".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1813".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P159".-> v5 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P571".-> v6 end bind0[/"year-from-dateTime(?datecreation)"/] v6 --o bind0 bind0 --as--o v7 subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P576".-> v8 end bind1[/"year-from-dateTime(?datedissolution)"/] v8 --o bind1 bind1 --as--o v9 subgraph optional5["(optional)"] style optional5 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1366".-> v10 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 v2 --"rdfs:label"--> v1 v5 --"rdfs:label"--> v11 v10 --"rdfs:label"--> v12 end