query-2b670025c3faacfbf0e47c73336dd9d7

rq turtle/ttl

egy év szülöttei

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 bd: <http://www.bigdata.com/rdf#>
SELECT ?ember ?emberLabel ?szul WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?ember wdt:P31 wd:Q5;
    wdt:P569 ?birth.
  FILTER((?birth >= "1970-01-01"^^xsd:dat) && (?birth < "1971-01-01"^^xsd:dat))
  OPTIONAL { ?ember wdt:P569 ?szul. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?birth") v2("?ember"):::projected v3("?szul"):::projected c4(["bd:serviceParam"]):::iri c8(["wd:Q5"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?birth >= s1970-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'?birth < s1971-01-01^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f0 --> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end v2 --"wdt:P31"--> c8 v2 --"wdt:P569"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v3 end