query-03720d85acf7a06b4d9c5df496ba2e35
Liste des groupements avec leurs membres (essais)
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#>
SELECT ?groupement ?groupementLabel (GROUP_CONCAT(DISTINCT(?MembreLabel); separator=", ") as ?Membres)
WHERE
{
?groupement wdt:P31/wdt:P279* wd:Q65934161.
OPTIONAL {?Membre wdt:P463 ?groupement.
OPTIONAL {?Membre rdfs:label ?MembreLabel. filter(lang(?MembreLabel)="fr") } }
# OPTIONAL {
# ?item wdt:P485 ?groupement .
# }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en".}
}
group by ?groupement ?groupementLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?Membre")
v2("?MembreLabel"):::projected
v4("?Membres")
v1("?groupement"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal
c3(["wd:Q65934161"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P463".-> v1
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"?MembreLabel"/]
v2 --o bind1
bind1 --as--o v4