Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created February 1, 2014 04:38
Show Gist options
  • Save tommorris/8748046 to your computer and use it in GitHub Desktop.
Save tommorris/8748046 to your computer and use it in GitHub Desktop.
prefix foaf: <http://xmlns.com/foaf/0.1/>
select distinct ?person ?givenName ?surname
where {
?person a foaf:Person;
foaf:givenName ?givenName;
foaf:surname ?surname .
}
LIMIT 200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment