Created
May 16, 2013 20:27
-
-
Save ringmaster/5594829 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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