Skip to content

Commit

Permalink
Fix trailing whitespace and apply changes
Browse files Browse the repository at this point in the history
  • Loading branch information
VNW22 committed Oct 8, 2024
1 parent dd056df commit e1dee13
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
SELECT DISTINCT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?infinitive
?present
?past

WHERE {
?lexeme dct:language wd:Q25167 ;
Expand All @@ -16,4 +18,17 @@ WHERE {
?lexeme ontolex:lexicalForm ?infinitiveForm .
?infinitiveForm ontolex:representation ?infinitive ;
wikibase:grammaticalFeature wd:Q179230 ;

OPTIONAL {
?lexeme ontolex:lexicalForm ?presentForm .
?presentForm ontolex:representation ?present ;
wikibase:grammaticalFeature wd:Q10345583 .
}


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

0 comments on commit e1dee13

Please sign in to comment.