dbpedia-2015-04en Graph


Description

DBpedia dataset v2015-04 (english version)

Infos

RDF triplesSubjectsPredicatesObjectsTime quotaMax results per request
398,216,004 triples31,400,01360,246151,669,33075ms2000 bindings

VoID description

Access the VoID description of the RDF graph at http://soyez-sage.univ-nantes.fr/void/dbpedia-2015-04en

Query the RDF Graph

Graph URI: http://soyez-sage.univ-nantes.fr/sparql/dbpedia-2015-04en

Basic SPARQL queries

The SaGe server has a native support for evaluating a subset of the SPARQL syntax. It supports SPARQL queries with the following features:


Complete SPARQL 1.1 queries

To execute complete SPARQL queries using a SaGe server, you have two options:


Example SPARQL queries

The following SPARQL queries can be executed on this RDF Graph.

Carpenters killed by crucifixion

prefix yago: <http://dbpedia.org/class/yago/>

SELECT ?person
WHERE {
  ?person a yago:Carpenters, yago:PeopleExecutedByCrucifixion.
}

Try this query


Devices with the same OS as the Raspberry Pi

FILTER

prefix dbo: <http://dbpedia.org/ontology/>
prefix dbp: <http://dbpedia.org/property/>
prefix dbr: <http://dbpedia.org/resource/>

SELECT DISTINCT ?device WHERE {
  dbr:Raspberry_Pi dbp:os ?operatingSystem.
  ?device a dbo:Device;
    dbp:os ?operatingSystem.
  FILTER (?device != dbr:Raspberry_Pi)
}

Try this query