query-bf6f2a66947fc3ee9abe2777e2bb4406
TODO
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 DISTINCT ?item ?itemLabel_en ?itemLabel_ga
WHERE
{
?item wdt:P31/wdt:P279* wd:Q55488 .
?item wdt:P17 wd:Q27 .
OPTIONAL { ?item rdfs:label ?itemLabel_en . FILTER(lang(?itemLabel_en)="en") }
OPTIONAL { ?item rdfs:label ?itemLabel_ga . FILTER(lang(?itemLabel_ga)="ga") }
} order by ?itemLabel_en
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemLabel_en"):::projected
v2("?itemLabel_ga"):::projected
a1((" "))
c7(["wd:Q27"]):::iri
c5(["wd:Q55488"]):::iri
v3 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v3 --"wdt:P17"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end