query-36f90244a22ac66211e21438127b2fa7
Sous-classes de GLAM SELECT DISTINCT ?item ?itemLabel WHERE { ?item wdt:P279/wdt:P279* wd:Q1030034. MINUS {?item wdt:P31 ?p31.}. MINUS {?item wdt:P856 ?siteweb.}. MINUS {?item wdt:P156 ?suivipar.}. MINUS {?item wdt:P155 ?précédépar.}. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?itemLabel
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#>
#Sous-classes de GLAM
SELECT DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P279/wdt:P279* wd:Q1030034.
MINUS {?item wdt:P31 ?p31.}.
MINUS {?item wdt:P856 ?siteweb.}.
MINUS {?item wdt:P156 ?suivipar.}.
MINUS {?item wdt:P155 ?précédépar.}.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],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
v3("?p31")
v6("?précédépar")
v4("?siteweb")
v5("?suivipar")
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q1030034"]):::iri
v2 --"wdt:P279"--> a1
a1 --"wdt:P279"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P31"--> v3
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P856"--> v4
end
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P156"--> v5
end
subgraph minus3["MINUS"]
style minus3 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P155"--> v6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end