query-01c00f9639e6f4582a876bdf50150b16
HarvestTemplate
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 psn: <http://www.wikidata.org/prop/statement/value-normalized/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT DISTINCT ?taille ?item
WHERE
{?item wdt:P31 wd:Q5 ;
p:P2048/psn:P2048/wikibase:quantityAmount ?taille .
FILTER (?taille > 3)
MINUS {?item wdt:P31 wd:Q190 .} #pas un-e dieu|déesse
}
ORDER BY (?taille)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?taille"):::projected
a1((" "))
a2((" "))
c7(["wd:Q190"]):::iri
c3(["wd:Q5"]):::iri
f0[["?taille > '3^^xsd:integer'"]]
f0 --> v1
v2 --"p:direct/P31"--> c3
v2 --"p:P2048"--> a1
a1 --"p:statement/value-normalized/P2048"--> a2
a2 --"wikibase:quantityAmount"--> v1
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"p:direct/P31"--> c7
end