Skip to content

Commit d283f6e

Browse files
committed
Fix some inconsistent tabs in the sample schema
1 parent 594cc96 commit d283f6e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

samples/today/schema.today.graphql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ scalar ItemCursor
1111

1212
"Root Query type"
1313
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)"""
1515
node(id: ID!) : Node
1616

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)"""
1818
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)"""
2020
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)"""
2222
unreadCounts(first: Int, after: ItemCursor, last: Int, before: ItemCursor): FolderConnection!
2323

2424
appointmentsById(ids: [ID!]! = ["ZmFrZUFwcG9pbnRtZW50SWQ="]) : [Appointment]!
@@ -87,7 +87,7 @@ type Mutation {
8787

8888
type Subscription {
8989
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!
9191
}
9292

9393
directive @subscriptionTag(field: String) on SUBSCRIPTION
@@ -98,7 +98,7 @@ enum TaskState {
9898
New
9999
Started
100100
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)""")
102102
}
103103

104104
type Appointment implements Node {

0 commit comments

Comments
 (0)