-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.gql
199 lines (170 loc) · 4.52 KB
/
schema.gql
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
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type MovementCategory {
id: Float!
name: String!
code: String!
description: String!
sign: Float!
createdAt: DateTime!
updatedAt: DateTime!
movements: [Movement!]!
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
type MovementType {
id: Float!
name: String!
code: String!
sign: Float!
createdAt: DateTime!
updatedAt: DateTime!
}
type Movement {
id: Float!
description: String!
amount: Float!
signedAmount: Float
closed: Boolean!
cloudId: String
imageUrl: String
createdAt: DateTime!
updatedAt: DateTime!
user: User!
movementType: MovementType!
movementCategory: MovementCategory!
}
type User {
id: Float!
authUid: String!
fullName: String!
email: String!
phone: String
createdAt: DateTime!
updatedAt: DateTime!
}
type Balance {
amount: Float
}
type IncomeOutcome {
month: String
income: Float
outcome: Float
}
type OutcomePerCategory {
movementCategoryId: Int
movementCategoryName: String
percentage: Float
}
type Query {
sayHello: String!
getUserByAuthUid(getUserByAuthUidInput: GetUserByAuthUidInput!): User!
getAllMovementCategories(getAllMovementCategoriesInput: GetAllMovementCategoriesInput!): [MovementCategory!]!
getAllMovements(getAllMovementsInput: GetAllMovementsInput!): [Movement!]!
getOneMovement(getOneMovementInput: GetOneMovementInput!): Movement!
getBalanceResume(getBalanceResumeInput: GetBalanceResumeInput!): Balance!
getIncomeOutcomeByMonth(getIncomeOutcomeByMonthInput: GetIncomeOutcomeByMonthInput!): [IncomeOutcome!]!
getOutcomePerCategories(getOutcomePerCategoriesInput: GetOutcomePerCategoriesInput!): [OutcomePerCategory!]!
}
input GetUserByAuthUidInput {
authUid: String!
}
input GetAllMovementCategoriesInput {
sign: Int!
}
input GetAllMovementsInput {
userAuthUid: String!
limit: Int
skip: Int
}
input GetOneMovementInput {
userAuthUid: String!
id: Int!
}
input GetBalanceResumeInput {
userAuthUid: String!
}
input GetIncomeOutcomeByMonthInput {
userAuthUid: String!
}
input GetOutcomePerCategoriesInput {
userAuthUid: String!
starDate: String!
endDate: String!
}
type Mutation {
createUser(createUserInput: CreateUserInput!): User!
createUserFromAuthUid(createUserFromAuthUidInput: CreateUserFromAuthUidInput!): User!
updateUser(updateUserInput: UpdateUserInput!): User!
changeUserEmail(changeUserEmailInput: ChangeUserEmailInput!): User!
changeUserPassword(changeUserPasswordInput: ChangeUserPasswordInput!): User!
changeUserPhone(changeUserPhoneInput: ChangeUserPhoneInput!): User!
resetUserPassword(resetUserPasswordInput: ResetUserPasswordInput!): String!
createOutcomeMovement(createOutcomeMovementInput: CreateOutcomeMovementInput!): Movement!
createIncomeMovement(createIncomeMovementInput: CreateIncomeMovementInput!): Movement!
updateIncomeMovement(getOneMovementInput: GetOneMovementInput!, updateIncomeMovementInput: UpdateIncomeMovementInput!): Movement!
updateOutcomeMovement(getOneMovementInput: GetOneMovementInput!, updateOutcomeMovementInput: UpdateOutcomeMovementInput!): Movement!
removeMovement(getOneMovementInput: GetOneMovementInput!): Movement!
uploadMovementImage(getOneMovementInput: GetOneMovementInput!, file: Upload!): Movement!
}
input CreateUserInput {
fullName: String!
email: String!
phone: String!
password: String!
}
input CreateUserFromAuthUidInput {
authUid: String!
email: String!
fullName: String
phone: String
}
input UpdateUserInput {
authUid: String!
fullName: String!
}
input ChangeUserEmailInput {
authUid: String!
email: String!
}
input ChangeUserPasswordInput {
authUid: String!
oldPassword: String!
newPassword: String!
}
input ChangeUserPhoneInput {
authUid: String!
phone: String!
}
input ResetUserPasswordInput {
email: String!
}
input CreateOutcomeMovementInput {
userAuthUid: String!
movementCategoryId: Int!
amount: Float!
description: String!
}
input CreateIncomeMovementInput {
userAuthUid: String!
movementCategoryId: Int!
amount: Float!
description: String!
}
input UpdateIncomeMovementInput {
movementCategoryId: Int
amount: Float
description: String
closed: Boolean
}
input UpdateOutcomeMovementInput {
movementCategoryId: Int
amount: Float
description: String
closed: Boolean
}
"""The `Upload` scalar type represents a file upload."""
scalar Upload