-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
108 lines (98 loc) · 1.57 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
"""
Categories informations
"""
type Category {
end: String!
id: Int!
name: String!
start: String!
subcategories: [Subcategory!]
url: String!
}
"""
Judges informations
"""
type Judge {
id: Int!
userId: ID!
}
type Mutation {
submitVote(
"""
Parameters for SubmitVote
"""
input: SubmitVoteInput!
): SubmitVotePayload
}
"""
Nominees informations
"""
type Nominee {
id: Int!
judgesResults(token: String): Int
media: String!
name: String!
subcategoryId: Int!
usersResults(token: String): Int
}
type Query {
"""
Get users votes
"""
fetchvote(token: String): [Vote!]
"""
Show current year information
"""
year: [Year!]!
}
"""
Subcategories informations
"""
type Subcategory {
id: Int!
name: String!
nominees: [Nominee!]!
}
"""
Autogenerated input type of SubmitVote
"""
input SubmitVoteInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
token: String!
nomineeid: Int!
}
"""
Autogenerated return type of SubmitVote
"""
type SubmitVotePayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
errors: [String!]!
vote: Vote
}
"""
Votes informations
"""
type Vote {
date: String!
id: Int!
nominee: Nominee!
userId: Int!
}
"""
Year informations
"""
type Year {
categories: [Category!]!
description: String!
end: String!
id: Int!
judges: [Judge!]!
showResults: String!
start: String!
}