query-ee2563be80145acbb59bc70bd9e64e9f
subclass of something (?itemsubclass of (P279)type ) with country Norway (?itemcountry (P17)Norway (Q20) )
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 ?item ?itemLabel ?type ?typeLabel {
?item wdt:P279 ?type.
?item wdt:P17 wd:Q20.
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Query found at
- https://www.wikidata.org/wiki/User:Iwan.Aucamp/WIP/Norway
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Norway
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?type"):::projected
c5(["bd:serviceParam"]):::iri
c3(["wd:Q20"]):::iri
c7(["en"]):::literal
v1 --"wdt:P279"--> v2
v1 --"wdt:P17"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end