query-f354f2abeed53fa003f04b33b32e2c78

rq turtle/ttl

title:Paintings of plant species that are in the Trifolium genus SELECT ?speciesname ?artistLabel (URI(CONCAT("https://eol.org/pages/",?eol_id)) AS ?eol_link) ?url WHERE { ?species wdt:P171 wd:Q101538; # Species' parent taxon is Trifolium wdt:P225 ?speciesname. ?work wdt:P180 ?species; wdt:P170 ?artist; wdt:P953 ?url. ?species wdt:P830 ?eol_id SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Paintings of plant species that are in the Trifolium genus
SELECT ?speciesname ?artistLabel (URI(CONCAT("https://eol.org/pages/",?eol_id)) AS ?eol_link) ?url WHERE {
?species wdt:P171 wd:Q101538; # Species' parent taxon is Trifolium
         wdt:P225 ?speciesname.
?work wdt:P180 ?species; wdt:P170 ?artist; wdt:P953 ?url.
?species wdt:P830 ?eol_id
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?artist") v6("?eol_id"):::projected v7("?eol_link") v1("?species") v2("?speciesname"):::projected v5("?url"):::projected v3("?work") c9(["bd:serviceParam"]):::iri c2(["wd:Q101538"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P171"--> c2 v1 --"wdt:P225"--> v2 v3 --"wdt:P180"--> v1 v3 --"wdt:P170"--> v4 v3 --"wdt:P953"--> v5 v1 --"wdt:P830"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end bind0[/"concat('https://eol.org/pages/',?eol_id)"/] v6 --o bind0 bind0 --as--o v7