query-b989d3e9cc73c3850fe3fb261c80339a

rq turtle/ttl

opere di autori nati nell'Ile de France, morti fra 1700 e 1899, presenti in Wikisource in francese, con SHARECatID SELECT ?book ?bookLabel ?author ?authorLabel ?DoD ?SHARECATid ?placeLabel ?page WHERE { ?book wdt:P50 ?author. ?author wdt:P19 ?place. ?place wdt:P131+ wd:Q13917. ?author wdt:P3987 ?SHARECATid. ?author wdt:P570 ?DoD. ?page schema:about ?book. ?page schema:isPartOf https://fr.wikisource.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". } FILTER((?DoD >= "1700-01-01T00:00:00Z"^^xsd:dateTime) && (?DoD <= "1899-01-01T00:00:00Z"^^xsd:dateTime))

} ORDER BY ?DoD

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#opere di autori nati nell'Ile de France, morti fra 1700 e 1899, presenti in Wikisource in francese, con SHARECatID
SELECT ?book ?bookLabel ?author ?authorLabel ?DoD ?SHARECATid ?placeLabel ?page WHERE {
  ?book wdt:P50 ?author.
  ?author wdt:P19 ?place.
  ?place wdt:P131+ wd:Q13917.
  ?author wdt:P3987 ?SHARECATid.
  ?author wdt:P570 ?DoD.
  ?page schema:about ?book.
  ?page schema:isPartOf <https://fr.wikisource.org/>.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
  FILTER((?DoD >= "1700-01-01T00:00:00Z"^^xsd:dateTime) && (?DoD <= "1899-01-01T00:00:00Z"^^xsd:dateTime))

}
ORDER BY ?DoD

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?DoD"):::projected v5("?SHARECATid"):::projected v3("?author"):::projected v2("?book"):::projected v6("?page"):::projected v4("?place") c6(["wd:Q13917"]):::iri c11([https://fr.wikisource.org/]):::iri c15(["fr"]):::literal c13(["bd:serviceParam"]):::iri f0[["?DoD >= '1700-01-01T00:00:00Z^^xsd:dateTime'?DoD <= '1899-01-01T00:00:00Z^^xsd:dateTime'"]] f0 --> v1 v2 --"wdt:P50"--> v3 v3 --"wdt:P19"--> v4 v4 --"wdt:P131"--> c6 v3 --"wdt:P3987"--> v5 v3 --"wdt:P570"--> v1 v6 --"schema:about"--> v2 v6 --"schema:isPartOf"--> c11 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end