query-fc538797bd2b8cc129496e0d78ef79a8

rq turtle/ttl

etc.) if the appropriate statement exists, but if the statement doesn’t exist, the result isn’t discarded – the variable simply isn’t set. ?publisher, ?titleThis gives us the additional variables ( clauses here. If you put all the triples into a single clause, like here – OPTIONALNote: it’s very important to use separate ) si existe la declaración apropiada, pero si la declaración no existe, el resultado no se descarta - la variable simplemente no está establecida. ?editorial, ?títuloEsto nos da variables adicionales ( separada aquí. Si pones todas las ternas en una sola cláusula, como aquí - OPTIONAL Nota: es muy importante usar la cláusula etc.) se esiste l'appropriata dichiarazione, ma se la dichiarazione non esiste, il risultato non viene scartato – la variabile semplicemente non è impostata. ?publisher, ?titleQuesto ci fornisce le variabili aggiuntive ( separate qui. Se metti tutte le triple in una singola clausola, come qui – OPTIONALNota: è molto importante utilizzare clausole etc.) als de juiste verklaring bestaat, maar als het niet bestaat, wordt het resultaat niet weggegooid - de variabele is gewoon niet ingesteld. ?publisher, ?titleDit geeft ons de extra variabelen ( clausules te gebruiken. Als u alle tripels in één clausule zet, zoals hier - OPTIONALNB: het is erg belangrijk om hier afzonderlijke

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 ?book ?title ?illustratorLabel ?publisherLabel ?published
WHERE
{
  ?book wdt:P50 wd:Q35610.
  OPTIONAL {
    ?book wdt:P1476 ?title;
          wdt:P110 ?illustrator;
          wdt:P123 ?publisher;
          wdt:P577 ?published.
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?book"):::projected v3("?illustrator") v5("?published"):::projected v4("?publisher") v2("?title"):::projected c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c2(["wd:Q35610"]):::iri v1 --"wdt:P50"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1476".-> v2 v1 --"wdt:P110"--> v3 v1 --"wdt:P123"--> v4 v1 --"wdt:P577"--> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end