Created
April 20, 2015 18:05
-
-
Save ostephens/d5ad2dab84b77dc7f32e to your computer and use it in GitHub Desktop.
Include date of birth in SPARQL results when selecting by DoB in query on BNB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX bio: <http://purl.org/vocab/bio/0.1/> | |
PREFIX foaf: <http://xmlns.com/foaf/0.1/> | |
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
SELECT ?author ?name ?dob WHERE { | |
?event a bio:Birth; | |
bio:date "1945"^^xsd:gYear; | |
bio:date ?dob. | |
?author bio:event ?event; | |
foaf:name ?name. | |
} | |
LIMIT 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for this!