Skip to content

Commit

Permalink
Merge pull request #284 from VNW22/Expand-Bokmål-verbs-query
Browse files Browse the repository at this point in the history
Expand Bokmål verbs query
  • Loading branch information
andrewtavis authored Oct 8, 2024
2 parents dd056df + 35e0232 commit 71e80f8
Showing 1 changed file with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
# tool: scribe-data
# All Bokmål (Norwegian) (Q9043) verbs.
# All Bokmål (Norwegian) (Q9043) and the currently implemented tenses for each.
# Enter this query at https://query.wikidata.org/.
# Note: This query is for Bokmål (Q25167) rather than Nynorsk (Q25164).

SELECT DISTINCT
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
?infinitive
?present

WHERE {
?lexeme dct:language wd:Q25167 ;
wikibase:lexicalCategory wd:Q24905 .

# MARK: Infinitive
# MARK: Active Infinitive

?lexeme ontolex:lexicalForm ?infinitiveForm .
?infinitiveForm ontolex:representation ?infinitive ;
wikibase:grammaticalFeature wd:Q179230 ;
wikibase:grammaticalFeature wd:Q1317831 .

# MARK: Active Present

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

0 comments on commit 71e80f8

Please sign in to comment.