query-adbc601625e9f7874ce3632094b24a77
Give me all dance figures that are not ballet movements! [Housekeping]
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 ?p ?pLabel ?pDescription
WHERE
{
?p wdt:P31 wd:Q384748 .
FILTER NOT EXISTS {?p wdt:P31 wd:Q96475360}
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,fr" . }
} ORDER BY ASC(?pLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?p"):::projected
v1("?pLabel"):::projected
c3(["wd:Q384748"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["de,en,fr"]):::literal
c2(["wd:Q96475360"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P31"--> e0c2
e0v1("?p"):::projected
e0c2(["wd:Q96475360"]):::iri
end
f0--EXISTS--> f0e0
f0 --> v2
f0 --> c1
f0 --> c2
v2 --"wdt:P31"--> c2
v2 --"wdt:P31"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end