query-b01ea53ee3c4161327edba06f80c188e
Propertiesinstance of (P31)
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item
WHERE
{
?item wdt:P31 wd:Q12308941 .
OPTIONAL { ?item schema:description ?d . FILTER(lang(?d)="nl") }
FILTER (!bound(?d))
}
ORDER BY RAND()
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?d")
v2("?item"):::projected
c3(["wd:Q12308941"]):::iri
f0[["not bound(?d)"]]
f0 --> v1
v2 --"wdt:P31"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:description".-> v1
end