Skip to content

Instantly share code, notes, and snippets.

@ringmaster
Created May 16, 2013 20:27
Show Gist options
  • Save ringmaster/5594829 to your computer and use it in GitHub Desktop.
Save ringmaster/5594829 to your computer and use it in GitHub Desktop.
PREFIX terms:<http://wiktionary.dbpedia.org/terms/>
PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#>
PREFIX dc:<http://purl.org/dc/elements/1.1/>
SELECT ?swordRes ?sword ?slang ?spos
FROM <http://wiktionary.dbpedia.org>
WHERE {
?swordRes rdfs:label ?sword .
?swordRes dc:language <http://wiktionary.dbpedia.org/terms/English> .
?swordRes dc:language ?slang .
?swordRes terms:hasPoS ?spos .
?swordRes terms:hasPoS <http://wiktionary.dbpedia.org/terms/Verb> .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment