query-0143fe22db5b60edccd1381d67b84120
Ships
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 ?item ?itemLabelEN ?service_entry
WHERE {
?item wdt:P31 wd:Q11446.
OPTIONAL { ?item wdt:P729 ?service_entry. }
OPTIONAL {
?item rdfs:label ?itemLabelEN.
FILTER(LANG(?itemLabelEN) = 'en')
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabelEN"):::projected
v3("?service_entry"):::projected
c3(["wd:Q11446"]):::iri
v2 --"wdt:P31"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P729".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end