-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand Norwegian/Bokmal verb query (#455)
* Expand Norwegian/Bokmal verb query * fix conflict * fix conflict * fix conflict * fix conflict * Resolved merge conflict in Bokmål verb query * fix check error * fix check error * remove hash * fix ceck error * Rename queries to fix merge conflict --------- Co-authored-by: Andrew Tavis McAllister <[email protected]>
- Loading branch information
1 parent
a6173c4
commit 122c9ab
Showing
2 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
src/scribe_data/language_data_extraction/Norwegian/Bokmål/verbs/query_verbs_1.sparql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# tool: scribe-data | ||
# All Bokmål (Q25167) verbs and basic forms. | ||
# Enter this query at https://query.wikidata.org/. | ||
|
||
SELECT | ||
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) | ||
?activeInfinitive | ||
?presentPerfect | ||
?imperative | ||
?preterite | ||
?passiveInfinitive | ||
?passivePresent | ||
?activePresent | ||
|
||
WHERE { | ||
?lexeme dct:language wd:Q25167 ; | ||
wikibase:lexicalCategory wd:Q24905 . | ||
|
||
# MARK: active Infinitive | ||
|
||
?lexeme ontolex:lexicalForm ?activeInfinitiveForm . | ||
?activeInfinitiveForm ontolex:representation ?activeInfinitive ; | ||
wikibase:grammaticalFeature wd:Q1317831 , wd:Q179230 . | ||
|
||
# MARK: present perfect | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?presentPerfectForm . | ||
?presentPerfectForm ontolex:representation ?presentPerfect ; | ||
wikibase:grammaticalFeature wd:Q1240211 . | ||
} | ||
|
||
# MARK: imperative | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?imperativeForm . | ||
?imperativeForm ontolex:representation ?imperative ; | ||
wikibase:grammaticalFeature wd:Q22716 . | ||
} | ||
|
||
# MARK: preterite | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?preteriteForm . | ||
?preteriteForm ontolex:representation ?preterite ; | ||
wikibase:grammaticalFeature wd:Q442485 . | ||
} | ||
|
||
# MARK: passive infinitive | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?passiveInfinitiveForm . | ||
?passiveInfinitiveForm ontolex:representation ?passiveInfinitive ; | ||
wikibase:grammaticalFeature wd:Q1194697, wd:Q179230 . | ||
} | ||
|
||
# MARK: passive Present | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?passivePresentForm . | ||
?passivePresentForm ontolex:representation ?passivePresent ; | ||
wikibase:grammaticalFeature wd:Q1194697, wd:Q192613 . | ||
} | ||
|
||
# MARK: active present | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?activePresentForm . | ||
?activePresentForm ontolex:representation ?activePresent ; | ||
wikibase:grammaticalFeature wd:Q1317831, wd:Q192613 . | ||
} | ||
} |
51 changes: 51 additions & 0 deletions
51
src/scribe_data/language_data_extraction/Norwegian/Bokmål/verbs/query_verbs_2.sparql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# tool: scribe-data | ||
# All Bokmål (Q25167) verbs and additional forms. | ||
# Enter this query at https://query.wikidata.org/. | ||
|
||
SELECT | ||
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID) | ||
?presentParticiple | ||
?feminineMasculineIndefiniteSingularPastParticiple | ||
?neuterIndefiniteSingularPastParticiple | ||
?definiteSingularPastParticiple | ||
?pluralPastParticiple | ||
|
||
WHERE { | ||
?lexeme dct:language wd:Q25167 ; | ||
wikibase:lexicalCategory wd:Q24905 . | ||
|
||
# MARK: present participle | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?presentParticipleForm . | ||
?presentParticipleForm ontolex:representation ?presentParticiple ; | ||
wikibase:grammaticalFeature wd:Q10345583 . | ||
} | ||
|
||
# MARK: masculine feminine singular indefinite past participle | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?feminineMasculineIndefiniteSingularPastParticipleForm . | ||
?feminineMasculineIndefiniteSingularPastParticipleForm ontolex:representation ?feminineMasculineIndefiniteSingularPastParticiple ; | ||
wikibase:grammaticalFeature wd:Q1775415, wd:Q499327, wd:Q53997857, wd:Q110786, wd:Q12717679 . | ||
} | ||
|
||
# MARK: neuter singular indefinite past participle | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?neuterIndefiniteSingularPastParticipleForm . | ||
?neuterIndefiniteSingularPastParticipleForm ontolex:representation ?neuterIndefiniteSingularPastParticiple ; | ||
wikibase:grammaticalFeature wd:Q12717679, wd:Q1775461, wd:Q110786, wd:Q53997857 . | ||
} | ||
|
||
# MARK: definite singular past participle | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?definiteSingularPastParticipleForm . | ||
?definiteSingularPastParticipleForm ontolex:representation ?definiteSingularPastParticiple ; | ||
wikibase:grammaticalFeature wd:Q12717679, wd:Q110786, wd:Q53997851 . | ||
} | ||
|
||
# MARK: plural past participle | ||
OPTIONAL { | ||
?lexeme ontolex:lexicalForm ?pluralPastParticipleForm . | ||
?pluralPastParticipleForm ontolex:representation ?pluralPastParticiple ; | ||
wikibase:grammaticalFeature wd:Q12717679, wd:Q146786 . | ||
} | ||
} |