query-c8866c48c1712fd35241b4b1b25eae41
10:21, 21 July 2017 (UTC)) talk (Jklamo is a better place to ask.--Wikidata:Request a query 09:31, 21 July 2017 (UTC)) talk (LarskeI can't explain why. --
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?s ?sLabel ?sAltLab WHERE {
?s wdt:P19 wd:Q844930.
OPTIONAL { ?s skos:altLabel ?sAltLab. }
FILTER(CONTAINS(?sAltLab, "Bolatu"@en))
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?s"):::projected
v1("?sAltLab"):::projected
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c3(["wd:Q844930"]):::iri
f0[["contains(?sAltLab,sBolatu^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>')"]]
f0 --> v1
v2 --"wdt:P19"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."skos:altLabel".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end