Skip to content

Commit f537571

Browse files
Chore: Update missing Wikidata query forms
1 parent 1a4e42d commit f537571

File tree

25 files changed

+799
-0
lines changed

25 files changed

+799
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# tool: scribe-data
2+
# All Arabic (Q13955) adjectives (Q34698) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?adjective
9+
?nominativeFeminineDual
10+
?nominativeMasculineDual
11+
?genitiveFeminineDual
12+
?genitiveMasculineDual
13+
?pausalIndefiniteSingular
14+
?pausalDefiniteSingular
15+
16+
WHERE {
17+
?lexeme dct:language wd:Q13955 ;
18+
wikibase:lexicalCategory wd:Q34698 ;
19+
wikibase:lemma ?adjective ;
20+
schema:dateModified ?lastModified .
21+
22+
OPTIONAL {
23+
?lexeme ontolex:lexicalForm ?nominativeFeminineDualForm .
24+
?nominativeFeminineDualForm ontolex:representation ?nominativeFeminineDual ;
25+
wikibase:grammaticalFeature wd:Q131105, wd:Q1775415, wd:Q110022 .
26+
}
27+
28+
OPTIONAL {
29+
?lexeme ontolex:lexicalForm ?nominativeMasculineDualForm .
30+
?nominativeMasculineDualForm ontolex:representation ?nominativeMasculineDual ;
31+
wikibase:grammaticalFeature wd:Q131105, wd:Q499327, wd:Q110022 .
32+
}
33+
34+
OPTIONAL {
35+
?lexeme ontolex:lexicalForm ?genitiveFeminineDualForm .
36+
?genitiveFeminineDualForm ontolex:representation ?genitiveFeminineDual ;
37+
wikibase:grammaticalFeature wd:Q146233, wd:Q1775415, wd:Q110022 .
38+
}
39+
40+
OPTIONAL {
41+
?lexeme ontolex:lexicalForm ?genitiveMasculineDualForm .
42+
?genitiveMasculineDualForm ontolex:representation ?genitiveMasculineDual ;
43+
wikibase:grammaticalFeature wd:Q146233, wd:Q499327, wd:Q110022 .
44+
}
45+
46+
OPTIONAL {
47+
?lexeme ontolex:lexicalForm ?pausalIndefiniteSingularForm .
48+
?pausalIndefiniteSingularForm ontolex:representation ?pausalIndefiniteSingular ;
49+
wikibase:grammaticalFeature wd:Q117262361, wd:Q53997857, wd:Q110786 .
50+
}
51+
52+
OPTIONAL {
53+
?lexeme ontolex:lexicalForm ?pausalDefiniteSingularForm .
54+
?pausalDefiniteSingularForm ontolex:representation ?pausalDefiniteSingular ;
55+
wikibase:grammaticalFeature wd:Q117262361, wd:Q53997851, wd:Q110786 .
56+
}
57+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# tool: scribe-data
2+
# All Arabic (Q13955) adjectives (Q34698) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?adjective
9+
?accusativeFeminineDual
10+
?accusativeMasculineDual
11+
12+
WHERE {
13+
?lexeme dct:language wd:Q13955 ;
14+
wikibase:lexicalCategory wd:Q34698 ;
15+
wikibase:lemma ?adjective ;
16+
schema:dateModified ?lastModified .
17+
18+
OPTIONAL {
19+
?lexeme ontolex:lexicalForm ?accusativeFeminineDualForm .
20+
?accusativeFeminineDualForm ontolex:representation ?accusativeFeminineDual ;
21+
wikibase:grammaticalFeature wd:Q146078, wd:Q1775415, wd:Q110022 .
22+
}
23+
24+
OPTIONAL {
25+
?lexeme ontolex:lexicalForm ?accusativeMasculineDualForm .
26+
?accusativeMasculineDualForm ontolex:representation ?accusativeMasculineDual ;
27+
wikibase:grammaticalFeature wd:Q146078, wd:Q499327, wd:Q110022 .
28+
}
29+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# tool: scribe-data
2+
# All Arabic (Q13955) nouns (Q1084) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?noun
9+
?genitiveIndefiniteDual
10+
?genitiveDualConstruct
11+
?accusativeIndefiniteDual
12+
?accusativeDualConstruct
13+
14+
WHERE {
15+
?lexeme dct:language wd:Q13955 ;
16+
wikibase:lexicalCategory wd:Q1084 ;
17+
wikibase:lemma ?noun ;
18+
schema:dateModified ?lastModified .
19+
20+
OPTIONAL {
21+
?lexeme ontolex:lexicalForm ?genitiveIndefiniteDualForm .
22+
?genitiveIndefiniteDualForm ontolex:representation ?genitiveIndefiniteDual ;
23+
wikibase:grammaticalFeature wd:Q146233, wd:Q53997857, wd:Q110022 .
24+
}
25+
26+
OPTIONAL {
27+
?lexeme ontolex:lexicalForm ?genitiveDualConstructForm .
28+
?genitiveDualConstructForm ontolex:representation ?genitiveDualConstruct ;
29+
wikibase:grammaticalFeature wd:Q146233, wd:Q110022, wd:Q1641446 .
30+
}
31+
32+
OPTIONAL {
33+
?lexeme ontolex:lexicalForm ?accusativeIndefiniteDualForm .
34+
?accusativeIndefiniteDualForm ontolex:representation ?accusativeIndefiniteDual ;
35+
wikibase:grammaticalFeature wd:Q146078, wd:Q53997857, wd:Q110022 .
36+
}
37+
38+
OPTIONAL {
39+
?lexeme ontolex:lexicalForm ?accusativeDualConstructForm .
40+
?accusativeDualConstructForm ontolex:representation ?accusativeDualConstruct ;
41+
wikibase:grammaticalFeature wd:Q146078, wd:Q110022, wd:Q1641446 .
42+
}
43+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# tool: scribe-data
2+
# All Arabic (Q13955) nouns (Q1084) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?noun
9+
?nominativeIndefiniteDual
10+
?nominativeDualConstruct
11+
?nominativePausalIndefiniteSingular
12+
13+
WHERE {
14+
?lexeme dct:language wd:Q13955 ;
15+
wikibase:lexicalCategory wd:Q1084 ;
16+
wikibase:lemma ?noun ;
17+
schema:dateModified ?lastModified .
18+
19+
OPTIONAL {
20+
?lexeme ontolex:lexicalForm ?nominativeIndefiniteDualForm .
21+
?nominativeIndefiniteDualForm ontolex:representation ?nominativeIndefiniteDual ;
22+
wikibase:grammaticalFeature wd:Q131105, wd:Q53997857, wd:Q110022 .
23+
}
24+
25+
OPTIONAL {
26+
?lexeme ontolex:lexicalForm ?nominativeDualConstructForm .
27+
?nominativeDualConstructForm ontolex:representation ?nominativeDualConstruct ;
28+
wikibase:grammaticalFeature wd:Q131105, wd:Q110022, wd:Q1641446 .
29+
}
30+
31+
OPTIONAL {
32+
?lexeme ontolex:lexicalForm ?nominativePausalIndefiniteSingularForm .
33+
?nominativePausalIndefiniteSingularForm ontolex:representation ?nominativePausalIndefiniteSingular ;
34+
wikibase:grammaticalFeature wd:Q131105, wd:Q117262361, wd:Q53997857, wd:Q110786 .
35+
}
36+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# tool: scribe-data
2+
# All Czech (Q9056) adjectives (Q34698) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?adjective
9+
?instrumentalPlural
10+
11+
WHERE {
12+
?lexeme dct:language wd:Q9056 ;
13+
wikibase:lexicalCategory wd:Q34698 ;
14+
wikibase:lemma ?adjective ;
15+
schema:dateModified ?lastModified .
16+
17+
OPTIONAL {
18+
?lexeme ontolex:lexicalForm ?instrumentalPluralForm .
19+
?instrumentalPluralForm ontolex:representation ?instrumentalPlural ;
20+
wikibase:grammaticalFeature wd:Q192997, wd:Q146786 .
21+
}
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# tool: scribe-data
2+
# All Dagbani (Q32238) verbs (Q24905) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?verb
9+
?nominalized
10+
11+
WHERE {
12+
?lexeme dct:language wd:Q32238 ;
13+
wikibase:lexicalCategory wd:Q24905 ;
14+
wikibase:lemma ?verb ;
15+
schema:dateModified ?lastModified .
16+
17+
OPTIONAL {
18+
?lexeme ontolex:lexicalForm ?nominalizedForm .
19+
?nominalizedForm ontolex:representation ?nominalized ;
20+
wikibase:grammaticalFeature wd:Q74674960 .
21+
}
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# tool: scribe-data
2+
# All English (Q1860) verbs (Q24905) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?verb
9+
?presentIndicative
10+
11+
WHERE {
12+
?lexeme dct:language wd:Q1860 ;
13+
wikibase:lexicalCategory wd:Q24905 ;
14+
wikibase:lemma ?verb ;
15+
schema:dateModified ?lastModified .
16+
17+
OPTIONAL {
18+
?lexeme ontolex:lexicalForm ?presentIndicativeForm .
19+
?presentIndicativeForm ontolex:representation ?presentIndicative ;
20+
wikibase:grammaticalFeature wd:Q56682909 .
21+
}
22+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# tool: scribe-data
2+
# All German (Q188) adjectives (Q34698) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?adjective
9+
?genitive
10+
?dative
11+
?nominativeAccusative
12+
13+
WHERE {
14+
?lexeme dct:language wd:Q188 ;
15+
wikibase:lexicalCategory wd:Q34698 ;
16+
wikibase:lemma ?adjective ;
17+
schema:dateModified ?lastModified .
18+
19+
OPTIONAL {
20+
?lexeme ontolex:lexicalForm ?genitiveForm .
21+
?genitiveForm ontolex:representation ?genitive ;
22+
wikibase:grammaticalFeature wd:Q146233 .
23+
}
24+
25+
OPTIONAL {
26+
?lexeme ontolex:lexicalForm ?dativeForm .
27+
?dativeForm ontolex:representation ?dative ;
28+
wikibase:grammaticalFeature wd:Q145599 .
29+
}
30+
31+
OPTIONAL {
32+
?lexeme ontolex:lexicalForm ?nominativeAccusativeForm .
33+
?nominativeAccusativeForm ontolex:representation ?nominativeAccusative ;
34+
wikibase:grammaticalFeature wd:Q131105, wd:Q146078 .
35+
}
36+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# tool: scribe-data
2+
# All German (Q188) verbs (Q24905) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?verb
9+
?activeInfinitive
10+
?activeCombinedPastParticiple
11+
?activeImperativeSingular
12+
?activeImperativePlural
13+
?activePresentCombinedPresentParticiple
14+
15+
WHERE {
16+
?lexeme dct:language wd:Q188 ;
17+
wikibase:lexicalCategory wd:Q24905 ;
18+
wikibase:lemma ?verb ;
19+
schema:dateModified ?lastModified .
20+
21+
OPTIONAL {
22+
?lexeme ontolex:lexicalForm ?activeInfinitiveForm .
23+
?activeInfinitiveForm ontolex:representation ?activeInfinitive ;
24+
wikibase:grammaticalFeature wd:Q1317831, wd:Q179230 .
25+
}
26+
27+
OPTIONAL {
28+
?lexeme ontolex:lexicalForm ?activeCombinedPastParticipleForm .
29+
?activeCombinedPastParticipleForm ontolex:representation ?activeCombinedPastParticiple ;
30+
wikibase:grammaticalFeature wd:Q1317831, wd:Q12717679 .
31+
}
32+
33+
OPTIONAL {
34+
?lexeme ontolex:lexicalForm ?activeImperativeSingularForm .
35+
?activeImperativeSingularForm ontolex:representation ?activeImperativeSingular ;
36+
wikibase:grammaticalFeature wd:Q1317831, wd:Q22716, wd:Q110786 .
37+
}
38+
39+
OPTIONAL {
40+
?lexeme ontolex:lexicalForm ?activeImperativePluralForm .
41+
?activeImperativePluralForm ontolex:representation ?activeImperativePlural ;
42+
wikibase:grammaticalFeature wd:Q1317831, wd:Q22716, wd:Q146786 .
43+
}
44+
45+
OPTIONAL {
46+
?lexeme ontolex:lexicalForm ?activePresentCombinedPresentParticipleForm .
47+
?activePresentCombinedPresentParticipleForm ontolex:representation ?activePresentCombinedPresentParticiple ;
48+
wikibase:grammaticalFeature wd:Q1317831, wd:Q192613, wd:Q10345583 .
49+
}
50+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# tool: scribe-data
2+
# All Hausa (Q56475) nouns (Q1084) and the given forms.
3+
# Enter this query at https://query.wikidata.org/.
4+
5+
SELECT
6+
(REPLACE(STR(?lexeme), "http://www.wikidata.org/entity/", "") AS ?lexemeID)
7+
?lastModified
8+
?noun
9+
?feminineSingular
10+
?masculineSingular
11+
?singularPlural
12+
13+
WHERE {
14+
?lexeme dct:language wd:Q56475 ;
15+
wikibase:lexicalCategory wd:Q1084 ;
16+
wikibase:lemma ?noun ;
17+
schema:dateModified ?lastModified .
18+
19+
OPTIONAL {
20+
?lexeme ontolex:lexicalForm ?feminineSingularForm .
21+
?feminineSingularForm ontolex:representation ?feminineSingular ;
22+
wikibase:grammaticalFeature wd:Q1775415, wd:Q110786 .
23+
}
24+
25+
OPTIONAL {
26+
?lexeme ontolex:lexicalForm ?masculineSingularForm .
27+
?masculineSingularForm ontolex:representation ?masculineSingular ;
28+
wikibase:grammaticalFeature wd:Q499327, wd:Q110786 .
29+
}
30+
31+
OPTIONAL {
32+
?lexeme ontolex:lexicalForm ?singularPluralForm .
33+
?singularPluralForm ontolex:representation ?singularPlural ;
34+
wikibase:grammaticalFeature wd:Q110786, wd:Q146786 .
35+
}
36+
}

0 commit comments

Comments
 (0)