Created
August 11, 2016 18:53
-
-
Save gregjan/d5744b2c8b3ddf11c45420f1c1dc4362 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
select ?label ?name ?bio ?id { | |
?id a gvp:PersonConcept; | |
gvp:agentTypePreferred|(gvp:agentTypePreferred/gvp:broaderExtended) aat:300025103; | |
gvp:prefLabelGVP [xl:literalForm ?name]; | |
gvp:prefLabelGVP|xl:altLabel [xl:literalForm ?label]; | |
foaf:focus/gvp:biographyPreferred [ | |
schema:description ?bio; | |
gvp:estStart ?birth] | |
filter (?birth <= "1939"^^xsd:gYear) | |
} ORDER BY ?label | |
LIMIT 100000 | |
OFFSET 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment