-
Notifications
You must be signed in to change notification settings - Fork 2
/
graphql.schema.json
1 lines (1 loc) · 71.3 KB
/
graphql.schema.json
1
{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":"The root query type which gives access points into the data universe.","fields":[{"name":"node","description":"Fetches an object given its globally unique `ID`.","args":[{"name":"nodeId","description":"The globally unique `ID`.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"currentPerson","description":"Gets the person who was identified by our JWT.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"searchPosts","description":"Returns posts containing a given search term.","args":[{"name":"orderBy","description":"The method to use when ordering `Post`.","type":{"kind":"ENUM","name":"SearchPostsOrderBy","ofType":null},"defaultValue":"NATURAL"},{"name":"before","description":"Read all values in the set before (above) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"after","description":"Read all values in the set after (below) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"first","description":"Only read the first `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Only read the last `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"search","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SearchPostsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allPeople","description":"Reads and enables paginatation through a set of `Person`.","args":[{"name":"orderBy","description":"The method to use when ordering `Person`.","type":{"kind":"ENUM","name":"PeopleOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"},{"name":"before","description":"Read all values in the set before (above) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"after","description":"Read all values in the set after (below) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"first","description":"Only read the first `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Only read the last `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"condition","description":"A condition to be used in determining which values should be returned by the collection.","type":{"kind":"INPUT_OBJECT","name":"PersonCondition","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PeopleConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"person","description":"Reads a single `Person` using its globally unique `ID`.","args":[{"name":"nodeId","description":"The globally unique `ID` to be used in selecting a single `Person`.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personById","description":null,"args":[{"name":"id","description":"The primary unique identifier for the person.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allPosts","description":"Reads and enables paginatation through a set of `Post`.","args":[{"name":"orderBy","description":"The method to use when ordering `Post`.","type":{"kind":"ENUM","name":"PostsOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"},{"name":"before","description":"Read all values in the set before (above) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"after","description":"Read all values in the set after (below) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"first","description":"Only read the first `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Only read the last `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"condition","description":"A condition to be used in determining which values should be returned by the collection.","type":{"kind":"INPUT_OBJECT","name":"PostCondition","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":"Reads a single `Post` using its globally unique `ID`.","args":[{"name":"nodeId","description":"The globally unique `ID` to be used in selecting a single `Post`.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postById","description":null,"args":[{"name":"id","description":"The primary key for the post.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Exposes the root query type nested one level down. This is helpful for Relay 1 which can only query top level fields if they are in a particular form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Query","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodeId","description":"The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An object with a globally unique `ID`.","fields":[{"name":"nodeId","description":"A globally unique identifier. Can be used in various places throughout the system to identify this single value.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"Query","ofType":null},{"kind":"OBJECT","name":"Person","ofType":null},{"kind":"OBJECT","name":"Post","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Person","description":"A user of the forum.","fields":[{"name":"nodeId","description":"A globally unique identifier. Can be used in various places throughout the system to identify this single value.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The primary unique identifier for the person.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"firstName","description":"The person’s first name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastName","description":"The person’s last name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"about","description":"A short description about the user, written by the user.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The time this person was created.","args":[],"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fullName","description":"A person’s full name which is a concatenation of their first and last name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"latestPost","description":"Get’s the latest post written by the person.","args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postsByAuthorId","description":"Reads and enables paginatation through a set of `Post`.","args":[{"name":"orderBy","description":"The method to use when ordering `Post`.","type":{"kind":"ENUM","name":"PostsOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"},{"name":"before","description":"Read all values in the set before (above) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"after","description":"Read all values in the set after (below) this cursor.","type":{"kind":"SCALAR","name":"Cursor","ofType":null},"defaultValue":null},{"name":"first","description":"Only read the first `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Only read the last `n` values of the set.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"condition","description":"A condition to be used in determining which values should be returned by the collection.","type":{"kind":"INPUT_OBJECT","name":"PostCondition","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"PostsConnection","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Datetime","description":"A point in time as described by the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Post","description":"A forum post written by a user.","fields":[{"name":"nodeId","description":"A globally unique identifier. Can be used in various places throughout the system to identify this single value.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The primary key for the post.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"authorId","description":"The id of the author user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"headline","description":"The title written by the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The main body text of our post.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"topic","description":"The topic this has been posted in.","args":[],"type":{"kind":"ENUM","name":"PostTopic","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The time this post was created.","args":[],"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"summary","description":"A truncated version of the body for summaries.","args":[{"name":"length","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"omission","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personByAuthorId","description":"Reads a single `Person` that is related to this `Post`.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PostTopic","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DISCUSSION","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INSPIRATION","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HELP","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHOWCASE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"PostsOrderBy","description":"Methods to use when ordering `Post`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PRIMARY_KEY_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PRIMARY_KEY_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NATURAL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AUTHOR_ID_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AUTHOR_ID_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HEADLINE_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HEADLINE_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BODY_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BODY_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TOPIC_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TOPIC_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT_DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Cursor","description":"A location in a connection that can be used for resuming pagination.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostCondition","description":"A condition to be used against `Post` object types. All fields are tested for equality and combined with a logical ‘and.’","fields":null,"inputFields":[{"name":"id","description":"Checks for equality with the object’s `id` field.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"authorId","description":"Checks for equality with the object’s `authorId` field.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"headline","description":"Checks for equality with the object’s `headline` field.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"body","description":"Checks for equality with the object’s `body` field.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"topic","description":"Checks for equality with the object’s `topic` field.","type":{"kind":"ENUM","name":"PostTopic","ofType":null},"defaultValue":null},{"name":"createdAt","description":"Checks for equality with the object’s `createdAt` field.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":"Checks for equality with the object’s `updatedAt` field.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostsConnection","description":"A connection to a list of `Post` values.","fields":[{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"The count of *all* `Post` you could get from the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges which contains the `Post` and cursor to aid in pagination.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PostsEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of `Post` objects.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Post","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"Cursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"Cursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"The `Boolean` scalar type represents `true` or `false`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PostsEdge","description":"A `Post` edge in the connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"SCALAR","name":"Cursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The `Post` at the end of the edge.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SearchPostsOrderBy","description":"Methods to use when ordering `Post`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NATURAL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SearchPostsConnection","description":"A connection to a list of `Post` values.","fields":[{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"The count of *all* `Post` you could get from the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges which contains the `Post` and cursor to aid in pagination.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"SearchPostsEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of `Post` objects.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Post","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SearchPostsEdge","description":"A `Post` edge in the connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"SCALAR","name":"Cursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The `Post` at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PeopleOrderBy","description":"Methods to use when ordering `Person`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PRIMARY_KEY_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PRIMARY_KEY_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NATURAL","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ID_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FIRST_NAME_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FIRST_NAME_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LAST_NAME_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LAST_NAME_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ABOUT_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ABOUT_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CREATED_AT_DESC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT_ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UPDATED_AT_DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PersonCondition","description":"A condition to be used against `Person` object types. All fields are tested for equality and combined with a logical ‘and.’","fields":null,"inputFields":[{"name":"id","description":"Checks for equality with the object’s `id` field.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"firstName","description":"Checks for equality with the object’s `firstName` field.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lastName","description":"Checks for equality with the object’s `lastName` field.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"about","description":"Checks for equality with the object’s `about` field.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"createdAt","description":"Checks for equality with the object’s `createdAt` field.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":"Checks for equality with the object’s `updatedAt` field.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PeopleConnection","description":"A connection to a list of `Person` values.","fields":[{"name":"pageInfo","description":"Information to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"The count of *all* `Person` you could get from the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges which contains the `Person` and cursor to aid in pagination.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"PeopleEdge","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of `Person` objects.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Person","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PeopleEdge","description":"A `Person` edge in the connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"SCALAR","name":"Cursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The `Person` at the end of the edge.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Person","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":"The root mutation type which contains root level fields which mutate data.","fields":[{"name":"authenticate","description":"Creates a JWT token that will securely identify a person and give them certain permissions.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AuthenticateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuthenticatePayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"registerPerson","description":"Registers a single user and creates an account in our forum.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegisterPersonInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RegisterPersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPerson","description":"Creates a single `Person`.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePerson","description":"Updates a single `Person` using its globally unique id and a patch.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonById","description":"Updates a single `Person` using a unique key and a patch.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonByIdInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePerson","description":"Deletes a single `Person` using its globally unique id.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonById","description":"Deletes a single `Person` using a unique key.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonByIdInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePersonPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createPost","description":"Creates a single `Post`.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePost","description":"Updates a single `Post` using its globally unique id and a patch.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatePostById","description":"Updates a single `Post` using a unique key and a patch.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePostByIdInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdatePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePost","description":"Deletes a single `Post` using its globally unique id.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePostInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletePostById","description":"Deletes a single `Post` using a unique key.","args":[{"name":"input","description":"The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePostByIdInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeletePostPayload","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AuthenticateInput","description":"All input for the `authenticate` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuthenticatePayload","description":"The output of our `authenticate` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jwtToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"JwtToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JwtToken","description":"A JSON Web Token defined by [RFC 7519](https://tools.ietf.org/html/rfc7519) which securely represents claims between two parties.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegisterPersonInput","description":"All input for the `registerPerson` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"firstName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"lastName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"email","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"password","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegisterPersonPayload","description":"The output of our `registerPerson` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"person","description":null,"args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personEdge","description":"An edge for the type. May be used by Relay 1.","args":[{"name":"orderBy","description":"The method to use when ordering `Person`.","type":{"kind":"ENUM","name":"PeopleOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"}],"type":{"kind":"OBJECT","name":"PeopleEdge","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonInput","description":"All input for the `createPerson` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"person","description":"The `Person` to be created by this mutation.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PersonInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PersonInput","description":"A user of the forum.","fields":null,"inputFields":[{"name":"id","description":"The primary unique identifier for the person.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"firstName","description":"The person’s first name.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"lastName","description":"The person’s last name.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"about","description":"A short description about the user, written by the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"createdAt","description":"The time this person was created.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonPayload","description":"The output of our `createPerson` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"person","description":"The `Person` that was created by this mutation.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personEdge","description":"An edge for our `Person`. May be used by Relay 1.","args":[{"name":"orderBy","description":"The method to use when ordering `Person`.","type":{"kind":"ENUM","name":"PeopleOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"}],"type":{"kind":"OBJECT","name":"PeopleEdge","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePersonInput","description":"All input for the `updatePerson` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nodeId","description":"The globally unique `ID` which will identify a single `Person` to be updated.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"personPatch","description":"An object where the defined keys will be set on the `Person` identified by our globally unique `ID`.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PersonPatch","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PersonPatch","description":"Represents an update to a `Person`. Fields that are set will be updated.","fields":null,"inputFields":[{"name":"id","description":"The primary unique identifier for the person.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"firstName","description":"The person’s first name.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"lastName","description":"The person’s last name.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"about","description":"A short description about the user, written by the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"createdAt","description":"The time this person was created.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonPayload","description":"The output of our `updatePerson` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"person","description":null,"args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePersonByIdInput","description":"All input for the `updatePersonById` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":"The primary unique identifier for the person.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"personPatch","description":"An object where the defined keys will be set on the `Person` identified by our unique key.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PersonPatch","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePersonInput","description":"All input for the `deletePerson` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nodeId","description":"The globally unique `ID` which will identify a single `Person` to be deleted.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonPayload","description":"The output of our `deletePerson` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"person","description":null,"args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePersonByIdInput","description":"All input for the `deletePersonById` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":"The primary unique identifier for the person.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePostInput","description":"All input for the `createPost` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"post","description":"The `Post` to be created by this mutation.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostInput","description":"A forum post written by a user.","fields":null,"inputFields":[{"name":"id","description":"The primary key for the post.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"authorId","description":"The id of the author user.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"headline","description":"The title written by the user.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"body","description":"The main body text of our post.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"topic","description":"The topic this has been posted in.","type":{"kind":"ENUM","name":"PostTopic","ofType":null},"defaultValue":null},{"name":"createdAt","description":"The time this post was created.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePostPayload","description":"The output of our `createPost` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":"The `Post` that was created by this mutation.","args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"postEdge","description":"An edge for our `Post`. May be used by Relay 1.","args":[{"name":"orderBy","description":"The method to use when ordering `Post`.","type":{"kind":"ENUM","name":"PostsOrderBy","ofType":null},"defaultValue":"PRIMARY_KEY_ASC"}],"type":{"kind":"OBJECT","name":"PostsEdge","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personByAuthorId","description":"Reads a single `Person` that is related to this `Post`.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePostInput","description":"All input for the `updatePost` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nodeId","description":"The globally unique `ID` which will identify a single `Post` to be updated.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"postPatch","description":"An object where the defined keys will be set on the `Post` identified by our globally unique `ID`.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostPatch","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PostPatch","description":"Represents an update to a `Post`. Fields that are set will be updated.","fields":null,"inputFields":[{"name":"id","description":"The primary key for the post.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"authorId","description":"The id of the author user.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"headline","description":"The title written by the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"body","description":"The main body text of our post.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"topic","description":"The topic this has been posted in.","type":{"kind":"ENUM","name":"PostTopic","ofType":null},"defaultValue":null},{"name":"createdAt","description":"The time this post was created.","type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"SCALAR","name":"Datetime","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePostPayload","description":"The output of our `updatePost` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personByAuthorId","description":"Reads a single `Person` that is related to this `Post`.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePostByIdInput","description":"All input for the `updatePostById` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":"The primary key for the post.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"postPatch","description":"An object where the defined keys will be set on the `Post` identified by our unique key.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"PostPatch","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePostInput","description":"All input for the `deletePost` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"nodeId","description":"The globally unique `ID` which will identify a single `Post` to be deleted.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePostPayload","description":"The output of our `deletePost` mutation.","fields":[{"name":"clientMutationId","description":"The exact same `clientMutationId` that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"post","description":null,"args":[],"type":{"kind":"OBJECT","name":"Post","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPostId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personByAuthorId","description":"Reads a single `Person` that is related to this `Post`.","args":[],"type":{"kind":"OBJECT","name":"Person","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"Our root query field type. Allows us to run any query from our mutation payload.","args":[],"type":{"kind":"OBJECT","name":"Query","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePostByIdInput","description":"All input for the `deletePostById` mutation.","fields":null,"inputFields":[{"name":"clientMutationId","description":"An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"id","description":"The primary key for the post.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}