Skip to content

Instantly share code, notes, and snippets.

@eagsalazar
Created September 20, 2010 06:00
Show Gist options
  • Save eagsalazar/587480 to your computer and use it in GitHub Desktop.
Save eagsalazar/587480 to your computer and use it in GitHub Desktop.
PREFIX dbpedia: <http://dbpedia.org/page/>
PREFIX dbpprop: <http://dbpedia.org/property/>
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
SELECT * WHERE {
?animal dbpprop:name ?name .
?animal dbpedia-owl:order <dbpedia:Carnivora> .
}
@VladimirAlexiev
Copy link

  1. It's http://dbpedia.org/resource/ not <http://dbpedia.org/page/
  2. It's dbpedia:Carnivora not <dbpedia:Carnivora>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment