query-a06f13d2be5d47877a6c43e3b3e7df54
Presence compositricesRequête permettant de trouver toutes les compositrices (ayant composé de la musique classique) sur Wikidata qui n'ont pas d'identifiant Presence Compositrices.
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 bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription WHERE {
?item wdt:P106 wd:Q36834; # compositeur
wdt:P21 wd:Q6581072; # de sexe féminin
wdt:P135 wd:Q9730. # apparenté au mouvement de la musique classique
MINUS { ?item wdt:P8523 _:b18. } # sans identifiant Presence compositrices
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
}
ORDER BY (?itemLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
a1((" "))
c6(["wd:Q9730"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["fr,en"]):::literal
c4(["wd:Q6581072"]):::iri
c2(["wd:Q36834"]):::iri
v2 --"wdt:P106"--> c2
v2 --"wdt:P21"--> c4
v2 --"wdt:P135"--> c6
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P8523"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end