query-2ac45ed21b05a2dc8cd317a06d3f439d
Title:Items with P9337 with or without el label SELECT ?item ?id ?el WHERE { ?item wdt:P9337 ?id . OPTIONAL { ?item rdfs:label ?el . FILTER(LANG(?el) = 'el') } } ORDER BY ?el
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#Title:Items with P9337 with or without el label
SELECT ?item ?id ?el
WHERE {
?item wdt:P9337 ?id .
OPTIONAL { ?item rdfs:label ?el . FILTER(LANG(?el) = 'el') }
}
ORDER BY ?el
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?el"):::projected
v3("?id"):::projected
v2("?item"):::projected
v2 --"wdt:P9337"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end