@@ -11,14 +11,14 @@ scalar ItemCursor
11
11
12
12
"Root Query type"
13
13
type Query {
14
- """[Object Identification](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#object-identification)"""
14
+ """[Object Identification](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#object-identification)"""
15
15
node (id : ID ! ) : Node
16
16
17
- """Appointments [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
17
+ """Appointments [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
18
18
appointments (first : Int , after : ItemCursor , last : Int , before : ItemCursor ): AppointmentConnection !
19
- """Tasks [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
19
+ """Tasks [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
20
20
tasks (first : Int , after : ItemCursor , last : Int , before : ItemCursor ): TaskConnection !
21
- """Folder unread counts [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
21
+ """Folder unread counts [Connection](https://facebook.github.io/relay/docs/en/graphql-server-specification.html#connections)"""
22
22
unreadCounts (first : Int , after : ItemCursor , last : Int , before : ItemCursor ): FolderConnection !
23
23
24
24
appointmentsById (ids : [ID ! ]! = ["ZmFrZUFwcG9pbnRtZW50SWQ=" ]) : [Appointment ]!
@@ -87,7 +87,7 @@ type Mutation {
87
87
88
88
type Subscription {
89
89
nextAppointmentChange : Appointment @deprecated (reason :"""Need to deprecate a [field](https://facebook.github.io/graphql/June2018/#sec-Deprecation)""" )
90
- nodeChange (id : ID ! ): Node !
90
+ nodeChange (id : ID ! ): Node !
91
91
}
92
92
93
93
directive @subscriptionTag (field : String ) on SUBSCRIPTION
@@ -98,7 +98,7 @@ enum TaskState {
98
98
New
99
99
Started
100
100
Complete
101
- Unassigned @deprecated (reason :"""Need to deprecate an [enum value](https://facebook.github.io/graphql/June2018/#sec-Deprecation)""" )
101
+ Unassigned @deprecated (reason :"""Need to deprecate an [enum value](https://facebook.github.io/graphql/June2018/#sec-Deprecation)""" )
102
102
}
103
103
104
104
type Appointment implements Node {
0 commit comments