-
Notifications
You must be signed in to change notification settings - Fork 8
/
schema.js.graphqls
134 lines (123 loc) · 3.08 KB
/
schema.js.graphqls
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
type Course {
_id: String,
name: String,
color: String,
isDisabled: Boolean
}
type Lesson {
_id: String,
position: Int,
description: String,
flashcardIds: [String]!,
youtubeId: String,
}
type LessonCount {
count: Int
}
type Image {
url: String,
hasAlpha: Boolean,
}
type Flashcard {
_id: String,
question: String!,
answer: String!,
image: Image,
answerImage: Image,
isCasual: Boolean,
}
type Item {
_id: String,
actualTimesRepeated: Int,
easinessFactor: Float,
extraRepeatToday: Boolean,
flashcardId: String,
lastRepetition: Int,
nextRepetition: Int,
previousDaysChange: Int,
timesRepeated: Int,
isCasual: Boolean,
flashcard: Flashcard!
}
type ItemWithFlashcard {
item: Item!,
flashcard: Flashcard!
}
type UserDetails {
hasDisabledTutorial: Boolean,
selectedCourse: String,
experience: Experience,
isCasual: Boolean
}
type Experience {
value: Int,
level: Int,
showLevelUp: Boolean
}
type User {
_id: String!,
password: String!,
username: String!,
email: String,
activated: Boolean!,
facebookId: String,
currentAccessToken: String,
}
type SessionCount {
newDone: Int,
newTotal: Int,
dueDone: Int,
dueTotal: Int,
reviewDone: Int,
reviewTotal: Int
}
type ReviewsPerDay {
count: Int,
ts: Int,
}
type Query {
Reviews: [ReviewsPerDay],
Courses: [Course]!,
Course(_id: String!): Course,
Lessons(courseId: String!): [Lesson]!,
Lesson(courseId: String!): Lesson,
Flashcards: [Flashcard],
Flashcard(_id: String!): Flashcard
Item: Item,
Items: [Item],
SessionCount: SessionCount
LessonCount: LessonCount
CurrentUser: User,
UserDetails: UserDetails
}
type Status {
success: Boolean!
}
type Mutation {
clearToken(userId: String!, token: String!): Boolean
changePassword(oldPassword: String!, newPassword: String!): Status,
selectCourse(courseId: String!): UserDetails,
selectCourseSaveToken(courseId: String!, deviceId: String): UserDetails,
closeCourse: UserDetails,
createItemsAndMarkLessonAsWatched(courseId: String!): Lesson,
processEvaluation(itemId: String!, evaluation: Float!): [Item]!,
addUser: User!
setUsernameAndPasswordForGuest(username: String!, password: String!, deviceId: String!, saveToken: Boolean): User
logIn(username: String!, password: String!, deviceId: String!, saveToken: Boolean): User
logInWithFacebook(accessTokenFb: String!, userIdFb: String!): User
logInWithFacebookAccessToken(accessTokenFb: String): User
logInWithToken(accessToken: String!, userId: String!, deviceId: String!): User
isTokenExpired(userId: String, token: String, deviceId: String): Boolean
switchUserIsCasual: UserDetails
setUserIsCasual(isCasual: Boolean!): UserDetails
clearNotCasualItems: Boolean
logOut: User
hideTutorial: UserDetails
confirmLevelUp: UserDetails
resetPassword(username: String!): Status
}
schema {
query: Query
mutation: Mutation
# subscription: Subscription
}