query-dec80eb47dc87ecb88d305194dfcc384

rq turtle/ttl

Propertiespublication date (P577)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
  ?item ?itemLabel ?articleTitle ?pubDate
  (URI(CONCAT("https://tools.wmflabs.org/wsexport/tool/book.php?lang=he&format=epub-3&page=", ?articleTitle)) AS ?epubDownload)
WHERE {
  ?item wdt:P577 ?pubDate .
  ?article schema:about ?item .
  ?article schema:name ?articleTitle .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],he". }
  ?article schema:isPartOf <https://he.wikisource.org/>
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article") v4("?articleTitle"):::projected v5("?epubDownload") v1("?item"):::projected v2("?pubDate"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,he"]):::literal c9([https://he.wikisource.org/]):::iri v1 --"wdt:P577"--> v2 v3 --"schema:about"--> v1 v3 --"schema:name"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end v3 --"schema:isPartOf"--> c9 bind0[/"concat('https://tools.wmflabs.org/wsexport/tool/book.php?lang=he&format=epub-3&page=',?articleTitle)"/] v4 --o bind0 bind0 --as--o v5