-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
157 lines (133 loc) · 3.02 KB
/
schema.graphql
File metadata and controls
157 lines (133 loc) · 3.02 KB
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
scalar Date
type Query {
settings: [Setting]
setting(key: String!): Setting
faculty(query: String): [Faculty]
facultyMember(id: String!): Faculty
students(query: String): [Student]
student(id: String!): Student
studentByUCINetID(ucinetid: String!): Student
users: [User]
user(id: String!): User
userByUCINetID(ucinetid: String!): User
supports(faculty: String, student: String): [Support]
support(id: String): Support
searchSupport(faculty: String, student: String, query: String): [Support]
me: User
webauth: AuthResp
}
type Mutation {
addFacultyMember(input: CreateFacultyInput!): Faculty!
updateFacultyMember(input: UpdateFacultyInput!): Faculty!
addFacultyProject(ucinetid: String!, project: String!): Faculty!
removeFacultyProject(ucinetid: String!, project: String!): Faculty!
addStudent(input: CreateStudentInput!): Student!
updateStudent(input: UpdateStudentInput!): Student!
addSupport(input: CreateSupportInput!): Support!
updateSupport(input: UpdateSupportInput!): Support!
removeSupport(id: String!): Support!
login (user: String!, password: String): User
}
type Faculty {
id: String!
firstName: String
lastName: String
lastFirstName: String
ucinetid: String!
email: String
canLogin: Boolean
accessOwnData: Boolean
projects: [ String ]!
supportGiven: [ Support ]!
initialCredit: Float!
availableCredit: Float!
}
input CreateFacultyInput {
firstName: String!
lastName: String!
ucinetid: String!
projects: [ String ]
initialCredit: Float
}
input UpdateFacultyInput {
id: String!
firstName: String
lastName: String
ucinetid: String
projects: [ String ]
initialCredit: Float
accessOwnData: Boolean
}
type Student {
id: String!
firstName: String
lastName: String
lastFirstName: String
ucinetid: String!
email: String
canLogin: Boolean
accessOwnData: Boolean
supportReceived: [Support]!
}
input CreateStudentInput {
firstName: String!
lastName: String!
ucinetid: String!
}
input UpdateStudentInput {
id: String!
firstName: String
lastName: String
ucinetid: String
}
type Support {
id: String!
faculty: Faculty!
student: Student!
fundingSource: String!
notes: String
quarter: String!
created: Date
}
input CreateSupportInput {
faculty: String!
student: String!
fundingSource: String!
notes: String
quarter: String!
}
input UpdateSupportInput {
id: String!
fundingSource: String
notes: String
quarter: String
}
type User {
id: String!
firstName: String
lastName: String
ucinetid: String!
isAdmin: Boolean
canLogin: Boolean
}
type Setting {
id: String!
key: String!
dataType: String!
adminOnly: Boolean
dataValue: String
}
type AuthResp {
_id: String!
ucinetid: String
auth_host: String
x_forwarded_for: String
time_created: Int
last_checked: Int
max_idle_time: Int
campus_id: String
uci_affiliations: [String]
age_in_seconds: Int
seconds_since_checked: Int
user: User
}