query-0b941497f15c89bf9361caeb79be8f8c
TODO
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 ?sitelinks WHERE {
{?item wdt:P17 wd:Q668.} #country is India
UNION #and/or
{?item wdt:P27 wd:Q668.} #country of citizenship is India
?item wikibase:sitelinks ?sitelinks . #number of sitelinks
filter(?sitelinks >20) #discard if less than 21
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} order by desc(?sitelinks)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelinks"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q668"]):::iri
c9(["en"]):::literal
f0[["?sitelinks > '20^^xsd:integer'"]]
f0 --> v1
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P27"--> c3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P17"--> c3
end
union0r <== or ==> union0l
end
v2 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end