query-5b22aa9da8574a79853c742cba1f2119
Compositrices religieusesBonjour, Comme discutĂ©, voici la requĂȘte SPARQL permettant de lister les compositrices religieuses connues de Wikidata :
Use at
- https://query.wikidata.org/sparql
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#>
SELECT ?human ?humanLabel (GROUP_CONCAT(DISTINCT ?genreLabel ; SEPARATOR = ", ") AS ?genres) {
?human wdt:P31 wd:Q5 ; wdt:P21 wd:Q6581072 ; wdt:P106 wd:Q36834 ; wdt:P106/wdt:P279* wd:Q4504549 .
OPTIONAL { ?human rdfs:label ?humanLabel . FILTER (LANG(?humanLabel) = "en") }
OPTIONAL { ?human wdt:P136 ?genre . ?genre rdfs:label ?genreLabel . FILTER(LANG(?genreLabel) = "en") . }
}
GROUP BY ?human ?humanLabel
ORDER BY ?humanLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?genre")
v2("?genreLabel"):::projected
v5("?genres")
v3("?human"):::projected
v1("?humanLabel"):::projected
a1((" "))
c3(["wd:Q5"]):::iri
c5(["wd:Q6581072"]):::iri
c9(["wd:Q4504549"]):::iri
c7(["wd:Q36834"]):::iri
v3 --"wdt:P31"--> c3
v3 --"wdt:P21"--> c5
v3 --"wdt:P106"--> c7
v3 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c9
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P136".-> v4
v4 --"rdfs:label"--> v2
end
bind1[/"?genreLabel"/]
v2 --o bind1
bind1 --as--o v5