Help

SPARQL (HAL)

Revision as of 12:42, 14 June 2023 by Hugo en résidence (talk | contribs) (Created page with "=== ✅ HAL Authors → birthdate === {| style="width:100%" |- style="vertical-align:top;" |style="padding: 0 3em;width:60%"| <syntaxhighlight lang="sparql"> #defaultEndpoint...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

✅ HAL Authors → birthdate

#defaultEndpoint:Wikidata
#defaultEndpoint:Wikidata
SELECT ?item ?itemLabel ?halIdValue ?birthDate (YEAR(?birthDate) AS ?birthYear)
WHERE {
  ?item wdt:P31 wd:Q5;
    p:P4450 ?statement.
  OPTIONAL { ?statement ps:P4450 ?halIdValue. }
  OPTIONAL { ?item wdt:P569 ?birthDate. }
  # MINUS { ?item wdt:P569 ?birthDate. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
... Loading ...