query-f48b425b2b5ea76ef1a50582fd8c96f5

rq turtle/ttl

. (P577)publication date and (P123)publisher , (P110)illustrator , (P1476)title But that’s a bit boring. There’s so much potential data about books, and we only show the label? Let’s try to craft a query that also includes the A first attempt might look like this:

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 <span lang="en" dir="ltr" class="mw-content-ltr">?book ?title ?illustratorLabel ?publisherLabel ?published</span>
WHERE
{
  ?książka wdt:P50 wd:Q35610;
        wdt:P1476 ?tytuł;
        wdt:P110 ?ilustrator;
        wdt:P123 ?wydawca;
        wdt:P577 ?opublikowane.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}

Query found at