-
Notifications
You must be signed in to change notification settings - Fork 195
/
schema.graphql
244 lines (218 loc) · 4.17 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
type AudioFile {
duration: Int
id: ID!
recitationId: Int
segments: String
url: String
verseId: Int
}
type Chapter {
"""
Boolean attribute indicating if this surah should show bismillah
"""
bismillahPre: Boolean!
"""
Surah number
"""
chapterNumber: Int!
id: ID!
nameArabic: String!
nameComplex: String!
nameSimple: String!
pages: [Int!]!
revelationOrder: Int!
revelationPlace: String!
"""
Translated chapter names
"""
translatedName(language: String! = "en"): TranslatedName
"""
verses for this chapter, max 50 results per call
"""
verses(
"""
starting ayah number
"""
from: Int
"""
page number for paginating within from-to ayah range
"""
page: Int = 1
"""
number of ayahs per call
"""
perPage: Int = 10
"""
last ayah number
"""
to: Int
): [Verse!]
versesCount: Int!
}
type ChapterInfo {
chapterId: Int
id: ID
languageName: String
shortText: String
source: String
text: String
}
"""
Represents untyped JSON
"""
scalar JSON
type Juz {
id: ID!
juzNumber: Int
verseMapping: JSON
"""
verses for this juz, max 50 results per call
"""
verses(
"""
page number for paginating within from-to ayah range
"""
page: Int = 1
"""
number of ayahs per call
"""
perPage: Int = 10
): [Verse!]
}
type Query {
audioFile(recitationId: ID!, verseId: ID!): AudioFile!
audioFiles(recitationId: ID!, verseIds: [ID!]!): [AudioFile!]!
"""
Chapter/Surah detail.
"""
chapter(id: ID!, language: String = "en"): Chapter!
chapterInfo(chapterId: ID!, language: String = "en"): ChapterInfo!
"""
Chapter/Surah list. Use `language` query string if you want to fetch translated names in a specific language.
"""
chapters(language: String = "en"): [Chapter!]!
juzs: [Juz!]!
searchVerses(language: String = "en", page: Int = 1, query: String!, size: Int = 20): SearchResults
tafsirs(verseId: ID, verseKey: String): [Tafsir!]!
verse(id: ID): Verse!
verseByVerseKey(verseKey: String!): Verse!
verses(chapterId: ID!, language: String = "en", limit: Int = 10, offset: Int = 0, page: Int = 1): [Verse!]!
}
type SearchResults {
currentPage: Int!
perPage: Int!
query: String!
results: [Verse!]!
took: Int!
totalCount: Int!
totalPages: Int!
}
type Tafsir {
id: ID!
languageId: Int
languageName: String
resourceContentId: Int
resourceName: String
text: String
verseId: Int
verseKey: String
}
type TranslatedName {
id: ID!
languageId: Int
languageName: String
name: String!
}
type Translation {
id: ID!
languageId: Int
languageName: String
resourceName: String
text: String
verseId: Int
}
type Verse {
"""
recitation of verse
"""
audio(
"""
Recitation id
"""
recitation: Int!
): AudioFile
chapterId: Int
hizbNumber: Int
id: ID!
imageUrl: String
imageWidth: Int
juzNumber: Int
pageNumber: Int
rubNumber: Int
sajdahNumber: Int
sajdahType: String
"""
tafsirs of the verse
"""
tafsirs(
"""
Comma separated ids of tafsir to load for each verse
"""
tafsirIds: String!
): [Tafsir!]
textImlaei: String
textImlaeiSimple: String
textIndopak: String
textUthmani: String
textUthmaniSimple: String
textUthmaniTajweed: String
"""
translations of verse
"""
translations(
"""
Comma separated ids of translation to load for each verse
"""
translationIds: String!
): [Translation!]
v1Page: Int
v2Page: Int
verseIndex: Int
verseKey: String
verseNumber: Int
"""
words of the verse
"""
words: [Word!]
}
type Word {
audioUrl: String
chapterId: Int
charTypeName: String
className: String
code: String
id: ID!
lineNumber: Int
location: String
pageNumber: Int
position: Int
textImlaei: String
textIndopak: String
textSimple: String
textUthmani: String
"""
word translation in given language. If translation for give language doesn't exist, we'll fallback to English translation
"""
translation: WordTranslation
v1Page: Int
v2Page: Int
verseId: Int
verseKey: String
}
type WordTranslation {
id: ID!
languageId: Int
languageName: String
text: String
wordId: Int
}