query-270ad706ea07ecf2fa49abb30a959b28

rq turtle/ttl

Marinai perdutiEdizioni di Co-autoriAutori delle edizioni pubblicate da Tor Books (modifica della precedente query, preferito) (very cute, I don't remember who do this)Pubblicati da un editore

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#>
#Autori delle edizioni pubblicate da Tor Books
#defaultView:Graph
SELECT ?publisher ?publisherLabel ?publisherPicture ?author ?authorLabel ?authorPicture
WHERE 
{
  ?item wdt:P31 wd:Q3331189.
  ?item wdt:P123 wd:Q2647037 .
  ?item wdt:P123 ?publisher.
  OPTIONAL {?publisher wdt:P154 ?publisherPicture.}
  ?item wdt:P50 ?author.
   OPTIONAL {?item wdt:P18 ?itemPicture}
   OPTIONAL {?author wdt:P18 ?authorPicture} .

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }

}
ORDER BY ?author

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?author"):::projected v6("?authorPicture"):::projected v2("?item") v5("?itemPicture") v3("?publisher"):::projected v4("?publisherPicture"):::projected c9(["bd:serviceParam"]):::iri c2(["wd:Q3331189"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q2647037"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P123"--> c4 v2 --"wdt:P123"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P154".-> v4 end v2 --"wdt:P50"--> v1 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end