Skip to content

Instantly share code, notes, and snippets.

@digitalWestie
Created May 2, 2019 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalWestie/81c1ee8139bca2b57974d091e7124ea6 to your computer and use it in GitHub Desktop.
Save digitalWestie/81c1ee8139bca2b57974d091e7124ea6 to your computer and use it in GitHub Desktop.
Wikidata Queries

Bach's children

SELECT ?child
WHERE
{
  wd:Q1339 wdt:P40 ?child.
}

Bach's children's birthdate

SELECT ?child ?childDate
WHERE
{
  wd:Q1339 wdt:P40 ?child.
  ?child wdt:P569 ?childDate.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment