query-48319375dff65c5ef2cc64023fe5234e
Search by words in label
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT distinct ?item ?itemLabel ?itemDescription WHERE{
?item ?label "Oak"@en.
?article schema:about ?item .
?article schema:inLanguage "en" .
?article schema:isPartOf <https://en.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article")
v1("?item"):::projected
v2("?label")
c6([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c1([sOak^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c4(["en"]):::literal
v1 -->v2--> c1
v3 --"schema:about"--> v1
v3 --"schema:inLanguage"--> c4
v3 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c4
end