query-c735615a254d15c148143bed00cbc676

rq turtle/ttl

Propertiesmember of sports team (P54)date of birth (P569)

Use at

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 DISTINCT
  ?player ?playerLabel
WHERE {
  ?player wdt:P54 wd:Q47774; # plays for France national football team
  wdt:P569 ?dob .
  BIND (FLOOR((NOW() - ?dob)/365.25) as ?age) .
  FILTER (?age = 24)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?age") v3("?dob") v2("?player"):::projected c6(["bd:serviceParam"]):::iri c3(["wd:Q47774"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?age = '24^^xsd:integer'"]] f0 --> v4 v2 --"wdt:P54"--> c3 v2 --"wdt:P569"--> v3 bind1[/"numeric-floor(NOW() - ?dob / '365.25^^xsd:decimal')"/] v3 --o bind1 bind1 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end