query-7e8459e687d45a78a4e6659e028510ef
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
- 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 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