query-110940bb1db8a3fd3a9db3735a73af11
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
{ ?item wdt:P1402 []. }
?item rdfs:label ?label.
FILTER((LANG(?label)) = "en")
FILTER((CONTAINS(?label, "left"))) # right, branch, part, surface, trunk, process
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
LIMIT 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label")
a1((" "))
c6(["bd:serviceParam"]):::iri
c2(["en"]):::literal
f0[["contains(?label,'left')"]]
f0 --> v1
f1[["?label = 'en'"]]
f1 --> v1
v2 --"wdt:P1402"--> a1
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c2
end