-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
71 lines (61 loc) · 1.69 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
# This file was generated based on ".graphqlconfig". Do not edit manually.
schema {
query: Query
}
"An object with an ID"
interface Node {
"The ID of the object."
id: ID!
}
type ActivityNode implements Node {
description: String!
"The ID of the object."
id: ID!
name: String!
submissionDate: Date!
submissionState: ActivitySubmissionState!
}
type ActivityNodeConnection {
"Contains the nodes in this connection."
edges: [ActivityNodeEdge]!
"Pagination data for this connection."
pageInfo: PageInfo!
}
"A Relay edge containing a `ActivityNode` and its cursor."
type ActivityNodeEdge {
"A cursor for use in pagination"
cursor: String!
"The item at the end of the edge"
node: ActivityNode
}
"The Relay compliant `PageInfo` type, containing data necessary to paginate this connection."
type PageInfo {
"When paginating forwards, the cursor to continue."
endCursor: String
"When paginating forwards, are there more items?"
hasNextPage: Boolean!
"When paginating backwards, are there more items?"
hasPreviousPage: Boolean!
"When paginating backwards, the cursor to continue."
startCursor: String
}
type Query {
"The ID of the object"
activity(id: ID!): ActivityNode
allActivities(after: String, before: String, description: String, description_Icontains: String, first: Int, last: Int, name: String, name_Icontains: String, submissionState: String): ActivityNodeConnection
}
"An enumeration."
enum ActivitySubmissionState {
#Aceite
A
#Pendente
P
#Rejeitado
R
}
"""
The `Date` scalar type represents a Date
value as specified by
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
"""
scalar Date