query-81e1324c82014062560dd24cdf01f2a0
All rowing persons (for watchlist import)Special:EditWatchlist/raw
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT DISTINCT ?stritem WHERE {
?item p:P106/ps:P106/wdt:P279* wd:Q26270618 .
BIND(STRAFTER(STR(?item), 'entity/') AS ?stritem) .
} ORDER BY ASC(xsd:integer(STRAFTER(?stritem, 'Q')))
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item")
v3("?stritem"):::projected
a1((" "))
a2((" "))
c5(["wd:Q26270618"]):::iri
v2 --"p:P106"--> a1
a1 --"p:statement/P106"--> a2
a2 --"p:direct/P279"--> c5
bind0[/"substring-after(str(?item),'entity/')"/]
v2 --o bind0
bind0 --as--o v3