query-f9db06e8906f15a2384cd0714f8d7c48

rq turtle/ttl

List of tephritid taxa and who named them by exploded parent_taxon relationship

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?taxonname ?authLabel ?year
WHERE
{
     ?tephs wdt:P171+ wd:Q626843. 
     ?tephs p:P225 ?name.
     ?name  ps:P225 ?taxonname.
     ?name  pq:P405 ?auth.
     ?name  pq:P574 ?year.
     SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?authLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?auth") v1("?authLabel"):::projected v3("?name") v4("?taxonname"):::projected v2("?tephs") v6("?year"):::projected c8(["bd:serviceParam"]):::iri c2(["wd:Q626843"]):::iri c10(["en"]):::literal v2 --"p:direct/P171"--> c2 v2 --"p:P225"--> v3 v3 --"p:statement/P225"--> v4 v3 --"p:qualifier/P405"--> v5 v3 --"p:qualifier/P574"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end