query-127909e9cb3464b6fd652e1a4338208e
General Quantities
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select * where {
?gq wdt:P31 wd:Q71758646 . # general quantity
optional { ?gq rdfs:label ?gqLabel . filter (lang(?gqLabel) = "en") }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?gq"):::projected
v1("?gqLabel"):::projected
c3(["wd:Q71758646"]):::iri
v2 --"wdt:P31"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end