query-107109ad9aa9d452d5da0e51189d4820
(P27)country of citizenship (Q843)Pakistan
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?sitelink WHERE {
?item wdt:P27 wd:Q843 .
?sitelink schema:about ?item;
schema:isPartOf <https://en.wikipedia.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} ORDER BY ASC(?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("?sitelink"):::projected
c5([https://en.wikipedia.org/]):::iri
c7(["bd:serviceParam"]):::iri
c2(["wd:Q843"]):::iri
c9(["en"]):::literal
v2 --"wdt:P27"--> c2
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end