query-586d9a1e367e98871b4a6cb3d73767a4

rq turtle/ttl

. (P577)وpublication date (P123)وpublisher (P110)وillustrator (P1476)title لكن هذا ممل بعض الشيء، هناك الكثير من البيانات المحتملة عن الكتب، ونعرض التسمية فقط؟ لنحاول صياغة استعلام يتضمن أيضا قد تبدو المحاولة الأولى كما يلي: . (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: Query Arthur Conan Doyle books Hints:Write a query that returns all books by Sir Arthur Conan Doyle Include the title (P1476), illustrator (P110), publisher (P123) and publication date (P577). . (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: も含むようにしてみましょう。 (P577)publication date 、および(P123)publisher 、(P110)illustrator 、(P1476)title しかしこれは少々退屈です。本に関するデータは他にもたくさんあるのに、タイトルだけを表示するなんて。そこでクエリを加工して、最初に書いてみたのはこんな感じになりました。 bevat. (P577)publication date en (P123)publisher , (P110)illustrator , (P1476)title Maar dat is een beetje saai. Er zijn zoveel potentiële gegevens over boeken, en we tonen alleen het label? Laten we proberen een query te maken die ook Een eerste poging zou er zo uit kunnen zien:

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;
        wdt:P1476 ?title;
        wdt:P110 ?illustrator;
        wdt:P123 ?publisher;
        wdt:P577 ?published.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}

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(["#91;AUTO_LANGUAGE#93;"]):::literal c2(["wd:Q35610"]):::iri v1 --"wdt:P50"--> c2 v1 --"wdt:P1476"--> v2 v1 --"wdt:P110"--> v3 v1 --"wdt:P123"--> v4 v1 --"wdt:P577"--> v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end