query-a29181bad921f64afc7cfa78f039d662

rq turtle/ttl

Königinnen, die im Februar geboren wurden

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#>
#defaultView:ImageGrid
select ?person ?personLabel ?birth ?image
WHERE
{
  ?person wdt:P31 wd:Q5;
          wdt:P21 wd:Q6581072;
          wdt:P569 ?birth;
          wdt:P18 ?image;
          wdt:P53 [].
          BIND(month(?birth) AS ?month). 
   SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
   FILTER (datatype(?birth) = xsd:dateTime)      
   FILTER (month(?birth) = 2)
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?birth"):::projected v3("?image"):::projected v4("?month") v2("?person"):::projected a1((" ")) c13(["de"]):::literal c6(["wd:Q6581072"]):::iri c11(["bd:serviceParam"]):::iri c4(["wd:Q5"]):::iri f0[["month-from-dateTime(?birth) = '2^^xsd:integer'"]] f0 --> v1 f1[["?birth = 'xsd:dateTime'"]] f1 --> v1 v2 --"wdt:P31"--> c4 v2 --"wdt:P21"--> c6 v2 --"wdt:P569"--> v1 v2 --"wdt:P18"--> v3 v2 --"wdt:P53"--> a1 bind2[/"month-from-dateTime(?birth)"/] v1 --o bind2 bind2 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end