Skip to content

Commit

Permalink
Update query_verbs.sparql
Browse files Browse the repository at this point in the history
  • Loading branch information
Otom-obhazi authored Oct 25, 2024
1 parent 328d916 commit e2a6846
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,37 @@
SELECT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?verb
?presentContinuous
?past
?future
?imperative

WHERE {
?lexeme dct:language wd:Q9610 ;
wikibase:lexicalCategory wd:Q24905 ;
wikibase:lemma ?verb .

# MARK: Present Continuous

OPTIONAL {
?lexeme ontolex:lexicalForm ?presentContinuousForm .
?presentContinuousForm ontolex:representation ?presentContinuous ;
wikibase:grammaticalFeature wd:Q7240943 .
}

# MARK: Past

OPTIONAL {
?lexeme ontolex:lexicalForm ?pastForm .
?pastForm ontolex:representation ?past ;
wikibase:grammaticalFeature wd:Q1994301 .
}

# MARK: Future

OPTIONAL {
?lexeme ontolex:lexicalForm ?futureForm .
?futureForm ontolex:representation ?future ;
wikibase:grammaticalFeature wd:Q501405 .
}
}

0 comments on commit e2a6846

Please sign in to comment.