Another SPARQL Query


select DISTINCT ?shows
where
{
?shows <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tina_Fey> .
?e <http://dbpedia.org/ontology/series> ?series .
}

This gets all the shows that starred Tina Fey.Again, it uses the DBPedia SPARQL endpoint:

http://dbpedia.org/sparql

Working Query

This query works for DBPedia:


PREFIX : <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
PREFIX dbo: <http://dbpedia.org/ontology/>

SELECT ?name ?birth ?death ?person WHERE {
?person dbpedia2:birthPlace <http://dbpedia.org/resource/Berlin> .
?person dbo:birthdate ?birth .
?person foaf:name ?name .
?person dbo:deathdate ?death
FILTER (?birth < "1900-01-01"^^xsd:date) .
}

With the SPARQL endpoint of:

http://dbpedia.org/sparql

YES!

Test 2 for RDF

The test 2 body

Second page

This is my second page on this site...
In order to test OpenDover, then I need to express some strong emotions. I really do like it when Drupal works well, but I really hate having to go through all of this documentation in order to find something that makes sense and works. I suppose that in the long run it would be helpful for me to understand this, but I feel frustrated and deficient in my capabilities.
Well, let's see if I say love or peace or joy if that works...
(That looks familiar!)
And now I have added Calais - see what happens.

Instance of Test for RDF

first instance

My First Page

This is my first page on this site...
In order to test OpenDover, then I need to express some strong emotions. I really do like it when Drupal works well, but I really hate having to go through all of this documentation in order to find something that makes sense and works. I suppose that in the long run it would be helpful for me to understand this, but I feel frustrated and deficient in my capabilities.
Well, let's see if I say love or peace or joy if that works...

Syndicate content