query-8a0292683cfb595906c890071dd5214d

rq turtle/ttl

Nascuts a Constantinoble de 1453 a 1923, amb article SELECT DISTINCT ?persona ?personaLabel ?data ?article WHERE { ?persona wdt:P31 wd:Q5. ?persona wdt:P19 wd:Q16869. ?persona wdt:P569 ?data. ?article schema:about ?persona. ?article schema:isPartOf https://ca.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,oc,en,es,fr". } FILTER("1453-05-29"^^xsd:dateTime <= ?data && ?data < "1924-01-01"^^xsd:dateTime). }

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#>
# Nascuts a Constantinoble de 1453 a 1923, amb article
SELECT DISTINCT ?persona ?personaLabel ?data ?article
WHERE {
  ?persona wdt:P31 wd:Q5.
  ?persona wdt:P19 wd:Q16869.
  ?persona wdt:P569 ?data.
  ?article schema:about ?persona.
  ?article schema:isPartOf <https://ca.wikipedia.org/>.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,oc,en,es,fr". }
  FILTER("1453-05-29"^^xsd:date <= ?data && ?data < "1924-01-01"^^xsd:dat).
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v1("?data"):::projected v2("?persona"):::projected c10([https://ca.wikipedia.org/]):::iri c14(["ca,oc,en,es,fr"]):::literal c6(["wd:Q16869"]):::iri c12(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri f0[["'1453-05-29^^xsd:date' <= ?data?data < s1924-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P19"--> c6 v2 --"wdt:P569"--> v1 v3 --"schema:about"--> v2 v3 --"schema:isPartOf"--> c10 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end