Skip to content
Snippets Groups Projects
Commit f88e1c4b authored by Your Name's avatar Your Name
Browse files

sparql query

parent d99aad74
No related branches found
No related tags found
No related merge requests found
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX : <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
PREFIX dbpedia: <http://dbpedia.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX dbo: <http://dbpedia.org/ontology/>
select ?person ?name ?birth ?description where {
?person a dbo:Person ;
foaf:name ?name ;
dbo:birthDate ?birth ;
dbo:abstract ?description
filter langMatches(lang(?name),'en')
filter langMatches(lang(?description),'en')
}
order by ?person
offset 100
limit 50
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment