query-fb0c1c69e24c822dc6a076cd6bccbbba
TODO
Use at
- https://query.wikidata.org/sparql
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#>
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P106 wd:Q9352089.
?item rdfs:label ?itemLabel. filter(lang(?itemLabel)="en")
filter(strstarts(?itemLabel, "James"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c4(["wd:Q9352089"]):::iri
f0[["starts-with(?itemLabel,'James')"]]
f0 --> v1
f1[["?itemLabel = 'en'"]]
f1 --> v1
v2 --"wdt:P106"--> c4
v2 --"rdfs:label"--> v1