query-6b94fb8144b88804208976ca887d66a5
Label of one country included in description of item linked to other Label of one country included in label of item linked to other
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT *
{
BIND( wd:Q1033 as ?longer ) BIND( wd:Q1032 as ?shorter )
?longer rdfs:label ?longername . FILTER(lang( ?longername) = "en")
?item wdt:P17 ?shorter ; schema:description ?tocheck . FILTER(lang(?tocheck)="en" && CONTAINS ( ?tocheck, ?longername ) )
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?item"):::projected
v3("?longer"):::projected
v2("?longername"):::projected
v4("?shorter"):::projected
v1("?tocheck"):::projected
f0[["?tocheck = 'en'contains(?tocheck,?longername)"]]
f0 --> v1
f0 --> v2
f1[["?longername = 'en'"]]
f1 --> v2
bind2[/"'wd:Q1033'"/]
bind2 --as--o v3
bind3[/"'wd:Q1032'"/]
bind3 --as--o v4
v3 --"rdfs:label"--> v2
v5 --"wdt:P17"--> v4
v5 --"schema:description"--> v1