Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update query_adverbs.sparql #403

Merged
merged 2 commits into from
Oct 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update query_adverbs.sparql
added comparative
Otom-obhazi authored Oct 17, 2024
commit 13f4728f84acad890404656c6dab13df1d2f246b
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ SELECT
?adverb
?diminutive
?superlative
?comparative

WHERE {
?lexeme dct:language wd:Q1321 ;
@@ -28,4 +29,12 @@ WHERE {
?superlativeForm ontolex:representation ?superlative ;
wikibase:grammaticalFeature wd:Q1817208 .
}

# MARK: Comparative

OPTIONAL {
?lexeme ontolex:lexicalForm ?comparativeForm .
?comparativeForm ontolex:representation ?comparative ;
wikibase:grammaticalFeature wd:Q14169499 .
}
}