query-5335ffca86fca204e5c667d014236ad4
All given names starting with ...
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?kindLabel ?item ?name WHERE {
?item wdt:P31 ?kind .
?kind wdt:P279 wd:Q202444 .
?item rdfs:label ?name FILTER (lang(?name) = "en") . FILTER(StrStarts(?name,"Abi"))
SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}
} ORDER BY ?name LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?kind")
v1("?name"):::projected
c8(["bd:serviceParam"]):::iri
c2(["en"]):::literal
c5(["wd:Q202444"]):::iri
f0[["starts-with(?name,'Abi')"]]
f0 --> v1
f1[["?name = 'en'"]]
f1 --> v1
v2 --"wdt:P31"--> v3
v3 --"wdt:P279"--> c5
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c2
end