query-3916b4f1c33c376c48fd1c1a81455980

rq turtle/ttl

TODO

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#>
SELECT ?author ?authorLabel ?Gutenberg_author_ID (URI(CONCAT("https://www.gutenberg.org/ebooks/author/", ?Gutenberg_author_ID)) as ?Gutenber_link)
WHERE
{
  ?author wdt:P31 wd:Q5 . # is human
  ?author wdt:P21 wd:Q6581072 . # is female
  ?author wdt:P106/wdt:P279* wd:Q482980. # is author
  ?author wdt:P1938 ?Gutenberg_author_ID .
  ?author wdt:P27 wd:Q174193 . # Citizen of UK of GB and Ireland
  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; v3("?Gutenber_link") v2("?Gutenberg_author_ID"):::projected v1("?author"):::projected a1((" ")) c10(["wd:Q174193"]):::iri c4(["wd:Q6581072"]):::iri c12(["bd:serviceParam"]):::iri c7(["wd:Q482980"]):::iri c2(["wd:Q5"]):::iri c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P21"--> c4 v1 --"wdt:P106"--> a1 a1 --"wdt:P279"--> c7 v1 --"wdt:P1938"--> v2 v1 --"wdt:P27"--> c10 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end bind0[/"concat('https://www.gutenberg.org/ebooks/author/',?Gutenberg_author_ID)"/] v2 --o bind0 bind0 --as--o v3