From c5e34669f61665239167a3014f13a3c4faac3f39 Mon Sep 17 00:00:00 2001 From: Muhsin Keloth Date: Fri, 3 May 2024 12:59:34 +0530 Subject: [PATCH] chore: add linear schema --- spec/fixtures/linear-schema.json | 79417 +++++++++++++++++++++++++++++ 1 file changed, 79417 insertions(+) create mode 100644 spec/fixtures/linear-schema.json diff --git a/spec/fixtures/linear-schema.json b/spec/fixtures/linear-schema.json new file mode 100644 index 000000000..5c0f1a31e --- /dev/null +++ b/spec/fixtures/linear-schema.json @@ -0,0 +1,79417 @@ +{ + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "AuthApiKey", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": 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": "AuthenticationSession", + "description": "User authentication session.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Type of application used to authenticate.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AuthenticationSessionType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ip", + "description": "IP address.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCountry", + "description": "Location country name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCountryCode", + "description": "Location country code.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countryCodes", + "description": "Country codes of all seen locations.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationRegionCode", + "description": "Location region code.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCity", + "description": "Location city name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAgent", + "description": "Session's user-agent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "browserType", + "description": "Used web browser.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastActiveAt", + "description": "When was the session last seen", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "Date when the session was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "Date when the session was last updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "Human readable location", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatingSystem", + "description": "Operating system used for the session", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "client", + "description": "Client used for the session", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Name of the session, derived from the client and operating system", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "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": "ENUM", + "name": "AuthenticationSessionType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "web", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktop", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ios", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "android", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) ", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthEmailIntakeAddress", + "description": "An email address that can be used for submitting issues.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": "Unique email address user name (before @) used for incoming email.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": "Whether the email address is enabled.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The auth organization that the email address is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The auth user who created the email intake address.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AuthUser", + "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": "AuthIntegration", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthorizedApplicationBase", + "description": null, + "fields": [ + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes that are authorized for this application for a given user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appId", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthMembership", + "description": "[INTERNAL] An OAuth userId/createdDate tuple", + "fields": [ + { + "name": "userId", + "description": "The authorizing userId", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The date of the authorization", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOauthClientWithTokens", + "description": null, + "fields": [ + { + "name": "client", + "description": "The auth OAuth client.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOauthClient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokens", + "description": "The token matching the app, scope, and actor.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OauthToken", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOauthClient", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "OAuth application's client name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Information about the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developer", + "description": "Name of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developerUrl", + "description": "Url of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientSecret", + "description": "OAuth application's client secret.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirectUris", + "description": "List of allowed redirect URIs for the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicEnabled", + "description": "Whether the OAuth application can be installed in other organizations.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creatorId", + "description": "The ID of the user who created the OAuth application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationId", + "description": "The ID of the workspace the OAuth application belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookUrl", + "description": "Webhook URL", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOauthClientWithScope", + "description": "AuthOauthClient with scope from OauthToken, for use in the GraphQL API.", + "fields": [ + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes that are authorized for this application for a given user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appId", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookUrl", + "description": "The application's webhook URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOauthClientWithMemberships", + "description": "AuthOauthClient with token creator IDs and counts (memberships), for use in the GraphQL API.", + "fields": [ + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes that are authorized for this application for a given user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appId", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookUrl", + "description": "The application's webhook URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalMembers", + "description": "Total number of members that authorized the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships", + "description": "User IDs and membership dates of everyone who has authorized the application with the set of scopes.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthMembership", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOrganization", + "description": "An organization. Organizations are root-level objects that contain users and teams.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The organization's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "urlKey", + "description": "The organization's unique URL key.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousUrlKeys", + "description": "Previously used URL keys for the organization (last 3 are kept and redirected).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoUrl", + "description": "The organization's logo URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletionRequestedAt", + "description": "The time at which deletion of the organization was requested.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "releaseChannel", + "description": "The feature release channel the organization belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReleaseChannel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlEnabled", + "description": "Whether SAML authentication is enabled for organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlSettings", + "description": "[INTERNAL] SAML settings", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAuthServices", + "description": "Allowed authentication providers, empty array means all are allowed", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scimEnabled", + "description": "Whether SCIM provisioning is enabled for organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "serviceId", + "description": "The email domain or URL key for the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": "The region the organization is hosted in.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ReleaseChannel", + "description": "Features release channel.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "internal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "beta", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preRelease", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "public", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "JSONObject", + "description": "The `JSONObject` scalar type represents arbitrary values as *embedded* JSON", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOrganizationDomain", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "claimed", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrganizationDomainAuthType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OrganizationDomainAuthType", + "description": "What type of auth is the domain used for.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "saml", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "general", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOrganizationInvite", + "description": "An invitation to the organization that has been sent via email.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": "The time at which the invite will be expiring. Null, if the invite shouldn't expire.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthUser", + "description": "A user that has access to the the resources of an organization.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The user's full name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": "The user's display (nick) name. Unique within each organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The user's email address.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "An URL to the user's avatar image.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the user is active.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAccountId", + "description": "User account ID the user belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "Organization the user belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OauthToken", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes associated with the access token.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "revokedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "client", + "description": "OAuth2 client for which the access token belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOauthClient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "Auth user who authorized the OAuth application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": "Id of the user who authorized the OAuth application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAccount", + "description": "A user account.", + "fields": [ + { + "name": "id", + "description": "The models identifier.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the model was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The time at which the model was updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the model was archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The user's name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The user's email address.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "service", + "description": "The authentication service used to create the account.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authTokenLinkDisabled", + "description": "Whether not to send email auth links in the email auth emails.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAccountEmailChange", + "description": "[INTERNAL] An email change verification challenge.", + "fields": [ + { + "name": "id", + "description": "The model's identifier.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The time at which the model was updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the model was archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oldEmail", + "description": "The user account's current email.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oldEmailVerifiedAt", + "description": "The timestamp the old email was verified at.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "newEmail", + "description": "The new email the user account wants to change to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "newEmailVerifiedAt", + "description": "The timestamp the new email was verified at.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": "The timestamp the verification codes expire at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The timestamp this verification challenge was canceled at.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageInfo", + "description": null, + "fields": [ + { + "name": "hasPreviousPage", + "description": "Indicates if there are more results when paginating backward.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasNextPage", + "description": "Indicates if there are more results when paginating forward.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startCursor", + "description": "Cursor representing the first result in the paginated results.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endCursor", + "description": "Cursor representing the last result in the paginated results.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApiKey", + "description": "An API key. Grants access to the user's resources.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The label of the API key.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApiKeyEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKey", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApiKeyConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKeyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKey", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Project", + "description": "A project.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The project's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The project's description.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The project's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The project's color.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "The status that the project is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lead", + "description": "The project lead.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateRemindersPausedUntilAt", + "description": "The time until which project update reminders are paused.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startDate", + "description": "The estimated start date of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startDateResolution", + "description": "[INTERNAL] The resolution of the project's start date.", + "args": [], + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDate", + "description": "The estimated completion date of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDateResolution", + "description": "[INTERNAL] The resolution of the project's estimated completion date.", + "args": [], + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt", + "description": "The time at which the project was moved into started state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "The time at which the project was moved into completed state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The time at which the project was moved into canceled state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivedAt", + "description": "The time at which the project was automatically archived by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trashed", + "description": "A flag that indicates whether the project is in the trash bin.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project within the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "convertedFromIssue", + "description": "The project was created based on this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueCountHistory", + "description": "The total number of issues in the project after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedIssueCountHistory", + "description": "The number of completed issues in the project after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scopeHistory", + "description": "The total number of estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedScopeHistory", + "description": "The number of completed estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inProgressScopeHistory", + "description": "The number of in progress estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackNewIssue", + "description": "Whether to send new issue notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueComments", + "description": "Whether to send new issue comment notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueStatuses", + "description": "Whether to send new issue status updates to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "The user's favorite associated with this project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Project URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "Teams associated with this project.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members", + "description": "Users that are members of the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdates", + "description": "Project updates associated with the project.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documents", + "description": "Documents associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned documents.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestones", + "description": "Milestones associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestoneConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "links", + "description": "Links associated with the project.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "progress", + "description": "The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "The overall scope (total estimate points) of the project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettings", + "description": "Settings for all integrations associated with that project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "content", + "description": "The project's content in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentState", + "description": "[Internal] The project's content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "[DEPRECATED] The type of the state.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Use project.status instead" + } + ], + "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": "TimelessDate", + "description": "Represents a date in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) ", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "DateResolutionType", + "description": "[INTERNAL] By which resolution is a date defined.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "month", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quarter", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "halfYear", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "year", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaginationOrderBy", + "description": "By which field should the pagination order by", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "createdAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Reminder", + "description": "A reminder that can be attached to different entities.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that created a reminder.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "remindAt", + "description": "The time when a reminder triggers a notification in the user's inbox.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "description": "Scheduling settings for recurring reminders.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": "The reminder's comment.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueId", + "description": "The issue that the reminder is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentId", + "description": "The document that the reminder is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": "The project that the reminder is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": "A user that has access to the the resources of an organization.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The user's full name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": "The user's display (nick) name. Unique within each organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The user's email address.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "An URL to the user's avatar image.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disableReason", + "description": "Reason why is the account disabled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviteHash", + "description": "Unique hash for the user to be used in invite URLs.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "calendarHash", + "description": "[DEPRECATED] Hash for the user to be used in calendar URLs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "A short description of the user, either its title or bio.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusEmoji", + "description": "The emoji to represent the user current status.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusLabel", + "description": "The label of the user current status.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusUntilAt", + "description": "A date at which the user current status should be cleared.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timezone", + "description": "The local timezone of the user.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "Organization the user belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeen", + "description": "The last time the user was seen online. If null, the user is currently online.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "guest", + "description": "Whether the user is a guest in the workspace and limited to accessing a subset of teams.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the user account is active or disabled (suspended).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "User's profile URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignedIssues", + "description": "Issues assigned to the user.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdIssues", + "description": "Issues created by the user.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdIssueCount", + "description": "Number of issues created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "Teams the user is part of.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMemberships", + "description": "Memberships associated with the user. For easier access of the same data, use `teams` query.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isMe", + "description": "Whether the user is the currently authenticated user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "admin", + "description": "Whether the user is an organization administrator.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Attachment", + "description": "Issue attachment (e.g. support ticket, pull request).", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "Content for the title line in the Linear attachment widget.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subtitle", + "description": "Content for the subtitle line in the Linear attachment widget.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Location of the attachment which is also used as an identifier.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The creator of the attachment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserCreator", + "description": "The non-Linear user who created the attachment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "Custom metadata related to the attachment.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": "Information about the source which created the attachment.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceType", + "description": "An accessor helper to source.type, defines the source type of the attachment.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupBySource", + "description": "Indicates if attachments for the same source application should be grouped in the Linear UI.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue this attachment belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuditEntry", + "description": "Workspace audit log entry object.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization the audit log belongs to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the audit entry to be created.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actorId", + "description": "The ID of the user that caused the audit entry to be created.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ip", + "description": "IP from actor when entry was recorded.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countryCode", + "description": "Country code of request resulting to audit entry.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "Additional metadata related to the audit entry.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestInformation", + "description": "Additional information related to the request which performed the action.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdate", + "description": "A update associated with an project.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "body", + "description": "The update content in markdown format.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the update is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "health", + "description": "The health of the project at the time of the update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectUpdateHealthType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user who wrote the update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editedAt", + "description": "The time the project update was edited.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactionData", + "description": "Emoji reaction summary, grouped by emoji type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "infoSnapshot", + "description": "[Internal] Serialized JSON representing current state of the project properties when posting the project update.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDiffHidden", + "description": "Whether project update diff should be hidden.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bodyData", + "description": "[Internal] The content of the project update as a Prosemirror document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The URL to the project update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diff", + "description": "The diff between the current update and the previous one.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diffMarkdown", + "description": "The diff between the current update and the previous one, formatted as markdown.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": "Comments associated with the project update.", + "args": [ + { + "name": "filter", + "description": "Filter returned comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectUpdateHealthType", + "description": "The health type of a project when the update is created.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "onTrack", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atRisk", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offTrack", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Reaction", + "description": "A reaction associated with a comment or a project update.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emoji", + "description": "Name of the reaction's emoji.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue that the reaction is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": "The comment that the reaction is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update that the reaction is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that created the reaction.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Comment", + "description": "A comment associated with an issue.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "body", + "description": "The comment content in markdown format.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue that the comment is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentContent", + "description": "The document content that the comment is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "DocumentContent", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update that the comment is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent comment under which the current comment is nested.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resolvingUser", + "description": "The user that resolved the thread.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resolvedAt", + "description": "The time the resolvingUser resolved the thread.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resolvingComment", + "description": "The comment that resolved the thread.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user who wrote the comment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUser", + "description": "The external user who wrote the comment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editedAt", + "description": "The time user edited the comment.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bodyData", + "description": "[Internal] The comment content as a Prosemirror document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quotedText", + "description": "The text that this comment references. Only defined for inline comments.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "summaryText", + "description": "[Internal] Summary for comment thread.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactionData", + "description": "Emoji reaction summary, grouped by emoji type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Comment's URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "The children of the comment.", + "args": [ + { + "name": "filter", + "description": "Filter returned comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that created the comment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Company", + "description": "A company related to issue's origin.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Company name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": "Company ID in an external system.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "websiteUrl", + "description": "Company website URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoUrl", + "description": "Company logo URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who added the company.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization of the customer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "companyProperties", + "description": "Custom company properties.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CompanyEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Company", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CompanyConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CompanyEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Company", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomView", + "description": "A custom view that has been saved by a user.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The description of the custom view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the custom view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The color of the icon of the custom view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization of the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the custom view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "The user who owns the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "The user who last updated the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filters", + "description": "The filters applied to issues in the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Will be replaced by `filterData` in a future update" + }, + { + "name": "filterData", + "description": "The filter applied to issues in the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectFilterData", + "description": "The filter applied to projects in the custom view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shared", + "description": "Whether the custom view is shared with everyone in the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "modelName", + "description": "The model name of the custom view.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "Projects associated with the custom view.", + "args": [ + { + "name": "filter", + "description": "Filter returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the custom view.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": "[INTERNAL] Sort returned issues.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueSortInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userViewPreferences", + "description": "The current users view preferences for this custom view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ViewPreferences", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationViewPreferences", + "description": "The organizations default view preferences for this custom view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ViewPreferences", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewPreferencesValues", + "description": "The calculated view preferences values for this custom view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ViewPreferencesValues", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ActorBot", + "description": "A bot actor is an actor that is not a user, but an application or integration.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of bot.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subType", + "description": "The sub type of the bot.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The display name of the bot.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userDisplayName", + "description": "The display name of the external user on behalf of which the bot acted.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "A url pointing to the avatar representing this bot.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Issue", + "description": "An issue.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "The issue's unique number.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "The issue's title.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priority", + "description": "The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "estimate", + "description": "The estimate of the complexity of the issue..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "boardOrder", + "description": "The order of the item in its column on the board.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Will be removed in near future, please use `sortOrder` instead" + }, + { + "name": "sortOrder", + "description": "The order of the item in relation to other items in the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt", + "description": "The time at which the issue was moved into started state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "The time at which the issue was moved into completed state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedTriageAt", + "description": "The time at which the issue entered triage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triagedAt", + "description": "The time at which the issue left triage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The time at which the issue was moved into canceled state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoClosedAt", + "description": "The time at which the issue was automatically closed by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivedAt", + "description": "The time at which the issue was automatically archived by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dueDate", + "description": "The date at which the issue is due.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slaStartedAt", + "description": "The time at which the issue's SLA began.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slaBreachesAt", + "description": "The time at which the issue's SLA will breach.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trashed", + "description": "A flag that indicates whether the issue is in the trash bin.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until an issue will be snoozed in Triage view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelIds", + "description": "Id of the labels associated with this issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the issue is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The cycle that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "The projectMilestone that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousIdentifiers", + "description": "Previous identifiers of the issue if it has been moved between teams.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserCreator", + "description": "The external user who created the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignee", + "description": "The user to whom the issue is assigned to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedBy", + "description": "The user who snoozed the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "The workflow state that the issue is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subIssueSortOrder", + "description": "The order of the item in the sub-issue list. Only set if the issue has a parent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priorityLabel", + "description": "Label for the priority.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceComment", + "description": "The comment that this issue was created from.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSourceType", + "description": "Integration type that created this issue, if applicable.", + "args": [], + "type": { + "kind": "ENUM", + "name": "IntegrationService", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that created the issue, if applicable.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "The users favorite associated with this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": "Issue's human readable identifier (e.g. ENG-123).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Issue URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branchName", + "description": "Suggested branch name for the issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerTicketCount", + "description": "Returns the number of Attachment resources which are created by customer support ticketing systems (e.g. Zendesk).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribers", + "description": "Users who are subscribed to the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned subscribers.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Children of the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": "Comments associated with the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": "History entries associated with the issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueHistoryConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": "Labels associated with this issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relations", + "description": "Relations associated with this issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inverseRelations", + "description": "Inverse relations associated with this issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": "Attachments associated with the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned attachments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The issue's description in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionData", + "description": "[Internal] The issue's description as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use description instead." + }, + { + "name": "descriptionState", + "description": "[Internal] The issue's description content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "IntegrationService", + "description": "Linear supported integration services.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "airbyte", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discord", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "figma", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "figmaPlugin", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "front", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "github", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "githubCommit", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "githubPersonal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitlab", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "googleCalendarPersonal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "googleSheets", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "intercom", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jira", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jiraPersonal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "loom", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notion", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "opsgenie", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pagerDuty", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slack", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackAsks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackOrgProjectUpdatesPost", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackPersonal", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackPost", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectPost", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectUpdatesPost", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentry", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zendesk", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "JSON", + "description": "The `JSON` scalar type represents arbitrary values as *stringified* JSON", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Cycle", + "description": "A set of issues to be resolved in a specified amount of time.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "The number of the cycle.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The custom name of the cycle.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The cycle's description.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startsAt", + "description": "The start time of the cycle.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endsAt", + "description": "The end time of the cycle.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "The completion time of the cycle. If null, the cycle hasn't been completed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivedAt", + "description": "The time at which the cycle was automatically archived by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueCountHistory", + "description": "The total number of issues in the cycle after each day.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedIssueCountHistory", + "description": "The number of completed issues in the cycle after each day.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scopeHistory", + "description": "The total number of estimation points after each day.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedScopeHistory", + "description": "The number of completed estimation points after each day.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inProgressScopeHistory", + "description": "The number of in progress estimation points after each day.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the cycle is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the cycle.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uncompletedIssuesUponClose", + "description": "Issues that weren't completed when the cycle was closed.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "progress", + "description": "The overall progress of the cycle. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CycleEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CycleConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CycleEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiaryEntry", + "description": "A diary entry", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bodyData", + "description": "[Internal] The entry content as a Prosemirror document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user who the diary belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": "The date for which the entry is created", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The canonical url for the DiaryEntry.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiaryEntryEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiaryEntryConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntryEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntry", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Document", + "description": "A document that can be attached to different entities.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "The document title.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The color of the icon.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "The user who last updated the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the document is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "[Internal] The initiative that the document is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The document's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this document.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hiddenAt", + "description": "The time at which the document was hidden. Null if the entity has not been hidden.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the resources list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "content", + "description": "The documents content in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentState", + "description": "[Internal] The documents content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The canonical url for the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentData", + "description": "[Internal] The documents content as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use content instead." + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentContentHistory", + "description": "A document content history for a document.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentContent", + "description": "The document content that this history item is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentContent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentData", + "description": "[Internal] The document content as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actorIds", + "description": "IDs of actors whose edits went into this history item.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentDataSnapshotAt", + "description": "The timestamp associated with the DocumentContent when it was originally saved.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentContent", + "description": "A document content for a project.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "content", + "description": "The document content in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentData", + "description": "[Internal] The document content as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `contentState` instead" + }, + { + "name": "contentState", + "description": "The document content state as a base64 encoded string.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue that the content is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the content is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "The initiative that the content is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "The project milestone that the content is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "document", + "description": "The document that the content is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "restoredAt", + "description": "The time at which the document content was restored from a previous version.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmailIntakeAddress", + "description": "An email address that can be used for submitting issues.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": "Unique email address user name (before @) used for incoming email.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": "Whether the email address is enabled.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "template", + "description": "The template that the email address is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the email address is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the email address is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the email intake address.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Emoji", + "description": "A custom emoji.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The emoji's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The emoji image URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": "The source of the emoji.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the emoji.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the emoji belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmojiEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Emoji", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmojiConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmojiEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Emoji", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EntityExternalLink", + "description": "An external link for an entity like initiative, etc...", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The link's URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The link's label.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the resources list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the link.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "The initiative that the link is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EntityExternalLinkEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EntityExternalLinkConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLinkEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "description": "Join table between templates and integrations.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "template", + "description": "The template that the integration is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The integration that the template is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "foreignEntityId", + "description": "ID of the foreign entity in the external integration this template is for, e.g., Slack channel ID.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationTemplateEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationTemplateConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplateEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackAsksTeamSettings", + "description": "Tuple for mapping Slack channel IDs to names.", + "fields": [ + { + "name": "id", + "description": "The Linear team ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasDefaultAsk", + "description": "Whether the default Asks template is enabled in the given channel for this team.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackChannelNameMapping", + "description": "Object for mapping Slack channel IDs to names and other settings.", + "fields": [ + { + "name": "id", + "description": "The Slack channel ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The Slack channel name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isPrivate", + "description": "Whether or not the Slack channel is private.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isShared", + "description": "Whether or not the Slack channel is shared with an external org.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botAdded", + "description": "Whether or not the Linear Asks bot has been added to this Slack channel.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "Which teams are connected to the channel and settings for those teams.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackAsksTeamSettings", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoCreateOnMessage", + "description": "Whether or not top-level messages in this channel should automatically create Asks.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoCreateOnEmoji", + "description": "Whether or not using the :ticket: emoji in this channel should automatically create Asks.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoCreateOnBotMention", + "description": "Whether or not @-mentioning the bot should automatically create an Ask with the message.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoCreateTemplateId", + "description": "The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postCancellationUpdates", + "description": "Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SharedSlackSettings", + "description": "Shared Slack integration settings.", + "fields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackAsksSettings", + "description": "Slack Asks specific settings.", + "fields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackChannelMapping", + "description": "The mapping of Slack channel ID => Slack channel name for connected channels.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackChannelNameMapping", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canAdministrate", + "description": "The user role type that is allowed to manage Asks settings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserRoleType", + "description": "The different permission roles available to users on an organization.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "admin", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "guest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntercomSettings", + "description": "Intercom specific settings.", + "fields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FrontSettings", + "description": "Front specific settings.", + "fields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackSettings", + "description": "Settings for the regular Slack integration.", + "fields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkOnIssueIdMention", + "description": "Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackPostSettings", + "description": "Slack notification specific settings.", + "fields": [ + { + "name": "channel", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "configurationUrl", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelType", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SlackChannelType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SlackChannelType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "DirectMessage", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MultiPersonDirectMessage", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Private", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Public", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubSettings", + "description": "Metadata and settings for a GitHub integration.", + "fields": [ + { + "name": "orgAvatarUrl", + "description": "The avatar URL for the GitHub organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orgLogin", + "description": "The GitHub organization's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repositories", + "description": "The names of the repositories connected for the GitHub integration.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubRepo", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repositoriesMapping", + "description": "Mapping of team to repository for syncing.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamRepoMapping", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubPersonalSettings", + "description": "Metadata and settings for a GitHub Personal integration.", + "fields": [ + { + "name": "login", + "description": "The GitHub user's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubRepo", + "description": "GitHub repos available to sync.", + "fields": [ + { + "name": "fullName", + "description": "The full name of the repository.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The GitHub repo id.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamRepoMapping", + "description": "Mapping of Linear teams to GitHub repos.", + "fields": [ + { + "name": "linearTeamId", + "description": "The Linear team id to map to the given project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubRepoId", + "description": "The GitHub repo id.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bidirectional", + "description": "Whether the sync for this mapping is bidirectional.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "default", + "description": "Whether this mapping is the default one for issue creation.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitLabSettings", + "description": "Metadata and settings for a GitLab integration.", + "fields": [ + { + "name": "url", + "description": "The self-hosted URL of the GitLab instance.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readonly", + "description": "Whether the token is limited to a read-only scope.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": "The ISO timestamp the GitLab access token expires.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GoogleSheetsSettings", + "description": "Google Sheets specific settings.", + "fields": [ + { + "name": "spreadsheetId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "spreadsheetUrl", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sheetId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedIssuesAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JiraProjectData", + "description": "Metadata about a Jira project.", + "fields": [ + { + "name": "id", + "description": "The Jira id for this project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": "The Jira key for this project, such as ENG.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The Jira name for this project, such as Engineering.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JiraLinearMapping", + "description": "Tuple for mapping Jira projects to Linear teams.", + "fields": [ + { + "name": "jiraProjectId", + "description": "The Jira id for this project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linearTeamId", + "description": "The Linear team id to map to the given project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bidirectional", + "description": "Whether the sync for this mapping is bidirectional.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "default", + "description": "Whether this mapping is the default one for issue creation.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JiraSettings", + "description": "Jira specific settings.", + "fields": [ + { + "name": "projectMapping", + "description": "The mapping of Jira project id => Linear team id.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JiraLinearMapping", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "The Jira projects for the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JiraProjectData", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isJiraServer", + "description": "Whether this integration is for Jira Server or not.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JiraPersonalSettings", + "description": "Jira personal specific settings.", + "fields": [ + { + "name": "siteName", + "description": "The name of the Jira site currently authorized through the integration.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotionSettings", + "description": "Notion specific settings.", + "fields": [ + { + "name": "workspaceId", + "description": "The ID of the Notion workspace being connected.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workspaceName", + "description": "The name of the Notion workspace being connected.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OpsgenieSettings", + "description": "Opsgenie specific settings.", + "fields": [ + { + "name": "apiFailedWithUnauthorizedErrorAt", + "description": "The date when the Opsgenie API failed with an unauthorized error.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PagerDutySettings", + "description": "PagerDuty specific settings.", + "fields": [ + { + "name": "apiFailedWithUnauthorizedErrorAt", + "description": "The date when the PagerDuty API failed with an unauthorized error.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SentrySettings", + "description": "Sentry specific settings.", + "fields": [ + { + "name": "organizationSlug", + "description": "The slug of the Sentry organization being connected.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ZendeskSettings", + "description": "Zendesk specific settings.", + "fields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subdomain", + "description": "The subdomain of the Zendesk organization being connected.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The URL of the connected Zendesk organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botUserId", + "description": "The ID of the Linear bot user.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationSettings", + "description": "The integration resource's settings.", + "fields": [ + { + "name": "slack", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SlackSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackAsks", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SlackAsksSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackPost", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SlackPostSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectPost", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SlackPostSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackOrgProjectUpdatesPost", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SlackPostSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "googleSheets", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GoogleSheetsSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHub", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GitHubSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubPersonal", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GitHubPersonalSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitLab", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "GitLabSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sentry", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SentrySettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zendesk", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ZendeskSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "intercom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "IntercomSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "front", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "FrontSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jira", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "JiraSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notion", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "NotionSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "opsgenie", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "OpsgenieSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pagerDuty", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PagerDutySettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jiraPersonal", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "JiraPersonalSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Integration", + "description": "An integration with an external service.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "service", + "description": "The integration's type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the integration is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the integration is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user that added the integration.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalUser", + "description": "An external authenticated (e.g., through Slack) user which doesn't have a Linear account, but can create and update entities in Linear from the external system that authenticated them.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The external user's full name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": "The external user's display name. Unique within each organization. Can match the display name of an actual user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The external user's email address.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "An URL to the external user's avatar image.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "Organization the external user belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastSeen", + "description": "The last time the external user was seen interacting with Linear.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalUserEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalUserConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalUserEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Template", + "description": "A template object used for creating entities faster.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The entity type this template is for.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the template.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Template description.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templateData", + "description": "Template data.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the template.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the template is associated with. If null, the template is associated with a particular team.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the template is associated with. If null, the template is global to the workspace.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the template.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUpdatedBy", + "description": "The user who last updated the template.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TemplateEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TemplateConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemplateEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Organization", + "description": "An organization. Organizations are root-level objects that contain user accounts and teams.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The organization's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "urlKey", + "description": "The organization's unique URL key.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoUrl", + "description": "The organization's logo URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "periodUploadVolume", + "description": "Rolling 30-day total upload volume for the organization, in megabytes.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitBranchFormat", + "description": "How git branches are formatted. If null, default formatting will be used.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitLinkbackMessagesEnabled", + "description": "Whether the Git integration linkback messages should be sent to private repositories.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitPublicLinkbackMessagesEnabled", + "description": "Whether the Git integration linkback messages should be sent to public repositories.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapEnabled", + "description": "Whether the organization is using a roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdatesReminderFrequency", + "description": "The frequency at which to prompt for project updates.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectUpdateReminderFrequency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateRemindersDay", + "description": "The day at which to prompt for project updates.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "Day", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateRemindersHour", + "description": "The hour at which to prompt for project updates.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fiscalYearStartMonth", + "description": "The month at which the fiscal year starts. Defaults to January (0).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlEnabled", + "description": "Whether SAML authentication is enabled for organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlSettings", + "description": "[INTERNAL] SAML settings.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scimEnabled", + "description": "Whether SCIM provisioning is enabled for organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAuthServices", + "description": "Allowed authentication providers, empty array means all are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletionRequestedAt", + "description": "The time at which deletion of the organization was requested.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trialEndsAt", + "description": "The time at which the trial of the plus plan will end.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousUrlKeys", + "description": "Previously used URL keys for the organization (last 3 are kept and redirected).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowMembersToInvite", + "description": "Whether member users are allowed to send invites.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "themeSettings", + "description": "[ALPHA] Theme settings for the organization.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "releaseChannel", + "description": "The feature release channel the organization belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReleaseChannel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slaDayCount", + "description": "Which day count to use for SLA calculations.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SLADayCountType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectStatuses", + "description": "The organization's project statuses.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": "Users associated with the organization.", + "args": [ + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "Teams associated with the organization.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrations", + "description": "Integrations associated with the organization.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscription", + "description": "The organization's subscription to a paid plan.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "PaidSubscription", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userCount", + "description": "Number of active users in the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdIssueCount", + "description": "Number of issues in the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templates", + "description": "Templates associated with the organization.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemplateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": "Labels associated with the organization.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectUpdateReminderFrequency", + "description": "The frequency at which to send project update reminders.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "week", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "twoWeeks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "month", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "never", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Day", + "description": "The day of the week.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Sunday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Monday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Tuesday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Wednesday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Thursday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Friday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Saturday", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SLADayCountType", + "description": "Which day count to use for SLA calculations.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "all", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "onlyBusinessDays", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeToProject", + "description": "[INTERNAL] Join table between projects and initiatives.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the initiative is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "The initiative that the project is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the project within the initiative.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeToProjectEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeToProjectConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProjectEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProject", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapToProject", + "description": "Join table between projects and roadmaps.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the roadmap is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmap", + "description": "The roadmap that the project is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the project within the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapToProjectEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapToProjectConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProjectEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProject", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Roadmap", + "description": "A roadmap for projects.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The description of the roadmap.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization of the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "The user who owns the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The roadmap's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the roadmap within the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The roadmap's color.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "Projects associated with the roadmap.", + "args": [ + { + "name": "filter", + "description": "Filter returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The canonical url for the roadmap.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Initiative", + "description": "[INTERNAL] An initiative to group projects.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the initiative.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "[Internal] The description of the initiative.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization of the initiative.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the initiative.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "The user who owns the initiative.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The initiative's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the initiative within the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The initiative's color.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDate", + "description": "The estimated completion date of the initiative.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDateResolution", + "description": "[INTERNAL] The resolution of the initiative's estimated completion date.", + "args": [], + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "Projects associated with the initiative.", + "args": [ + { + "name": "filter", + "description": "[Internal] Filter returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "links", + "description": "Links associated with the initiative.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLinkConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Facet", + "description": "[ALPHA] A facet. Facets are joins between entities. A facet can tie a custom view to a project, or a a project to a roadmap for example.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the facet.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FacetEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facet", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FacetConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FacetEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Facet", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Favorite", + "description": "User favorites presented in the sidebar.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of the favorite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent folder of the favorite.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "folderName", + "description": "The name of the folder. Only applies to favorites of type folder.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTab", + "description": "The targeted tab of the project.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ProjectTab", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predefinedViewType", + "description": "The type of favorited predefined view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "The owner of the favorite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the favorites list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Children of the favorite. Only applies to favorites of type folder.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FavoriteConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The favorited issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The favorited project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectTeam", + "description": "The favorited team of the project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The favorited cycle.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The favorited custom view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predefinedViewTeam", + "description": "The team of the favorited predefined view.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "document", + "description": "The favorited document.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmap", + "description": "The favorited roadmap.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The favorited label.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The favorited user.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectTab", + "description": "Different tabs available inside a project.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "documents", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FavoriteEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FavoriteConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FavoriteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationTargetBranch", + "description": "A Git target branch for which there are automations (GitAutomationState).", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team to which this Git target branch automation belongs.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branchPattern", + "description": "The target branch pattern.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isRegex", + "description": "Whether the branch pattern is a regular expression.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automationStates", + "description": "Automation states associated with the target branch.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationStateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationState", + "description": "A trigger that updates the issue status according to Git automations.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "The associated workflow state.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team to which this automation state belongs.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetBranch", + "description": "The target branch associated to this automation state.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "GitAutomationTargetBranch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "event", + "description": "The event that triggers the automation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GitAutomationStates", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branchPattern", + "description": "[DEPRECATED] The target branch, if null, the automation will be triggered on any branch.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use targetBranch instead." + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "GitAutomationStates", + "description": "The various states of a pull/merge request.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "draft", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mergeable", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "merge", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationStateEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationStateConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationStateEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationState", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "description": "The configuration of all integrations for a project or a team.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueCreated", + "description": "Whether to send a Slack message when a new issue is created for the project or the team.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueNewComment", + "description": "Whether to send a Slack message when a comment is created on any of the project or team's issues.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueStatusChangedDone", + "description": "Whether to send a Slack message when any of the project or team's issues change to completed or cancelled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueStatusChangedAll", + "description": "Whether to send a Slack message when any of the project or team's issues has a change in status.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectUpdateCreated", + "description": "Whether to send a Slack message when a project update is created.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectUpdateCreatedToTeam", + "description": "Whether to send a new project update to team Slack channels.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackProjectUpdateCreatedToWorkspace", + "description": "Whether to send a new project update to workspace Slack channel.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueAddedToTriage", + "description": "Whether to send a Slack message when a new issue is added to triage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueSlaHighRisk", + "description": "Whether to send a Slack message when an SLA is at high risk.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueSlaBreached", + "description": "Whether to send a Slack message when an SLA is breached.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "Team which those settings apply to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "Project which those settings apply to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationsSettingsEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationsSettingsConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettingsEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueLabel", + "description": "Labels that can be associated with issues.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The label's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The label's description.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The label's color as a HEX string.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Workspace labels are identified by their team being null." + }, + { + "name": "team", + "description": "The team that the label is associated with. If null, the label is associated with the global workspace.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the label.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent label.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isGroup", + "description": "Whether this label is considered to be a group.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the label.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Children of the label.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueLabelEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueDraft", + "description": "[Internal] A draft issue.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "The draft's title.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The draft's description in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priority", + "description": "The priority of the draft.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "estimate", + "description": "The estimate of the complexity of the draft.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dueDate", + "description": "The date at which the issue would be due.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamId", + "description": "The team associated with the draft.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleId", + "description": "The cycle associated with the draft.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": "The project associated with the draft.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestoneId", + "description": "The project milestone associated with the draft.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the draft.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assigneeId", + "description": "The user assigned to the draft.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateId", + "description": "The workflow state associated with the draft.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent draft of the draft.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueDraft", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentIssue", + "description": "The parent issue of the draft.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subIssueSortOrder", + "description": "The order of items in the sub-draft list. Only set if the draft has `parent` set.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priorityLabel", + "description": "Label for the priority.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionData", + "description": "[Internal] The draft's description as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": "Serialized array of JSONs representing attachments.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationHistoryPayload", + "description": "Issue relation history's payload.", + "fields": [ + { + "name": "identifier", + "description": "The identifier of the related issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of the change.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueHistory", + "description": "A record of changes to an issue.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue that was changed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user who made these changes. If null, possibly means that the change made by an integration.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actorId", + "description": "The id of user who made these changes. If null, possibly means that the change made by an integration.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedDescription", + "description": "Whether the issue's description was updated.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromTitle", + "description": "What the title was changed from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toTitle", + "description": "What the title was changed to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromAssignee", + "description": "The user from whom the issue was re-assigned from.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromAssigneeId", + "description": "The id of user from whom the issue was re-assigned from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toAssignee", + "description": "The user to whom the issue was assigned to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toAssigneeId", + "description": "The id of user to whom the issue was assigned to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromPriority", + "description": "What the priority was changed from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toPriority", + "description": "What the priority was changed to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromTeam", + "description": "The team from which the issue was moved from.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromTeamId", + "description": "The id of team from which the issue was moved from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toTeam", + "description": "The team to which the issue was moved to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toTeamId", + "description": "The id of team to which the issue was moved to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromParent", + "description": "The previous parent of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromParentId", + "description": "The id of previous parent of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toParent", + "description": "The new parent of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toParentId", + "description": "The id of new parent of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromState", + "description": "The previous workflow state of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromStateId", + "description": "The id of previous workflow state of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toState", + "description": "The new workflow state of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toStateId", + "description": "The id of new workflow state of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromCycle", + "description": "The previous cycle of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromCycleId", + "description": "The id of previous cycle of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toCycle", + "description": "The new cycle of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toCycleId", + "description": "The id of new cycle of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toConvertedProject", + "description": "The new project created from the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toConvertedProjectId", + "description": "The id of new project created from the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromProject", + "description": "The previous project of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromProjectId", + "description": "The id of previous project of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toProject", + "description": "The new project of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toProjectId", + "description": "The id of new project of the issue.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromEstimate", + "description": "What the estimate was changed from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toEstimate", + "description": "What the estimate was changed to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archived", + "description": "Whether the issue is archived at the time of this history entry.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trashed", + "description": "Whether the issue was trashed or un-trashed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImport", + "description": "The import record.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueImport", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachment", + "description": "The linked attachment.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentId", + "description": "The id of linked attachment.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedLabelIds", + "description": "ID's of labels that were added.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removedLabelIds", + "description": "ID's of labels that were removed.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relationChanges", + "description": "Changed issue relationships.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationHistoryPayload", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoClosed", + "description": "Whether the issue was auto-closed.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchived", + "description": "Whether the issue was auto-archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromDueDate", + "description": "What the due date was changed from.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toDueDate", + "description": "What the due date was changed to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changes", + "description": "[Internal] Serialized JSON representing changes for certain non-relational properties.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibilityNotifiedUsers", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that performed the action.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedLabels", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removedLabels", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueHistoryEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueHistory", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueHistoryConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueHistoryEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueHistory", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueImport", + "description": "An import job for data from an external service.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamName", + "description": "New team's name in cases when teamId not set.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creatorId", + "description": "The id for the user that started the job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "service", + "description": "The service from which data will be imported.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "The status for the import job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mapping", + "description": "The data mapping configuration for the import job.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error", + "description": "User readable error message, if one has occurred during the import.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "progress", + "description": "Current step progress in % (0-100).", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "csvFileUrl", + "description": "File URL for the uploaded CSV for the import, if there is one.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errorMetadata", + "description": "Error code and metadata, if one has occurred during the import.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelation", + "description": "A relation between two issues.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The relationship of the issue with the related issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue whose relationship is being described.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relatedIssue", + "description": "The related issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelation", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApproval", + "description": "Request to install OAuth clients on organizations and the response to the request.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oauthClientId", + "description": "The uuid of the OAuth client being requested for installation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requesterId", + "description": "The person who requested installing the OAuth client.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "responderId", + "description": "The person who responded to the request to install the OAuth client.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "The status for the OAuth client approval request.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OAuthClientApprovalStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scopes", + "description": "The scopes the app has requested.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestReason", + "description": "The reason the person wants to install this OAuth client.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "denyReason", + "description": "The reason the request for the OAuth client approval was denied.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OAuthClientApprovalStatus", + "description": "The different requests statuses possible for an OAuth client approval request.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "requested", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "approved", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "denied", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "description": "A basic entity.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "IssueNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApprovalNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomViewNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CycleNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LabelNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TeamNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserNotificationSubscription", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "OauthClient", + "description": "OAuth2 client application", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "OAuth application's client name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Information about the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developer", + "description": "Name of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developerUrl", + "description": "Url of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientSecret", + "description": "OAuth application's client secret.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "redirectUris", + "description": "List of allowed redirect URIs for the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicEnabled", + "description": "Whether the OAuth application can be installed in other organizations.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the OAuth application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the OAuth application is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookResourceTypes", + "description": "The resource types to request when creating new webhooks.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookUrl", + "description": "Webhook URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookSecret", + "description": "Webhook secret token for verifying the origin on the recipient side.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OauthClientEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OauthClient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OauthClientConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OauthClientEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OauthClient", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDomain", + "description": "Defines the use of a domain by an organization.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Domain name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verified", + "description": "Is this domain verified.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verificationEmail", + "description": "E-mail used to verify this domain.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who added the domain.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authType", + "description": "What type of auth is the domain used for.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrganizationDomainAuthType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "claimed", + "description": "Whether the domains was claimed by the organization through DNS verification.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInvite", + "description": "An invitation to the organization that has been sent via email.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The invitees email address.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": "The user role that the invitee will receive upon accepting the invite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "external", + "description": "The invite was sent to external address.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "acceptedAt", + "description": "The time at which the invite was accepted. Null, if the invite hasn't been accepted.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": "The time at which the invite will be expiring. Null, if the invite shouldn't expire.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "Extra metadata associated with the organization invite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviter", + "description": "The user who created the invitation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invitee", + "description": "The user who has accepted the invite. Null, if the invite hasn't been accepted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the invite is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInviteEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInviteConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInviteEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvite", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectMilestone", + "description": "A milestone for a project.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the project milestone.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDate", + "description": "The planned completion date of the milestone.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project of the milestone.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the milestone in relation to other milestones within a project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The project milestone's description in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionData", + "description": "[Internal] The project milestone's description as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use `descriptionState` instead." + }, + { + "name": "descriptionState", + "description": "[Internal] The project milestone's description as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the project milestone.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectMilestoneEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectMilestoneConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestoneEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectLink", + "description": "An external link for a project.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The link's URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The link's label.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the project resources list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the link.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the link is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectLinkEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectLinkConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLink", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectRelation", + "description": "A relation between two projects.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The relationship of the project with the related project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project whose relationship is being described.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "The milestone within the project whose relationship is being described.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anchorType", + "description": "The type of anchor on the project end of the relation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relatedProject", + "description": "The related project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relatedProjectMilestone", + "description": "The milestone within the related project whose relationship is being described.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relatedAnchorType", + "description": "The type of anchor on the relatedProject end of the relation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectRelationEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectRelationConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelationEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelation", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatus", + "description": "A project status.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the status.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The UI color of the status as a HEX string.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Description of the status.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": "The position of the status in the workspace's project flow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of the project status.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProjectStatusType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "indefinite", + "description": "Whether or not a project can be in this status indefinitely.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectStatusType", + "description": "A type of project status.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "backlog", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "planned", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "started", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paused", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatusConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatusEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "description": "Holds information about when a user has interacted with a project update.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that has interacted with the project update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update that has been interacted with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at which the user read the project update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PushSubscription", + "description": "A user's web browser push notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PushSubscriptionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PushSubscriptionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscriptionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscription", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaidSubscription", + "description": "The paid subscription of an organization.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The subscription type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seats", + "description": "The number of seats in the subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seatsMinimum", + "description": "The minimum number of seats that will be billed in the subscription.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "seatsMaximum", + "description": "The maximum number of seats that will be billed in the subscription.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The creator of the subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the subscription is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "collectionMethod", + "description": "The collection method for this subscription, either automatically charged or invoiced.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The date the subscription was canceled, if any.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pendingChangeType", + "description": "The subscription type of a pending change. Null if no change pending.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nextBillingAt", + "description": "The date the subscription will be billed next.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Team", + "description": "An organizational unit that contains issues.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The team's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": "The team's unique key. The key is used in URLs.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The team's description.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the team.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The team's color.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that the team is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cyclesEnabled", + "description": "Whether the team uses cycles.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleStartDay", + "description": "The day of the week that a new cycle starts.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleDuration", + "description": "The duration of a cycle in weeks.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleCooldownTime", + "description": "The cooldown time after each cycle in weeks.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleIssueAutoAssignStarted", + "description": "Auto assign started issues to current cycle.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleIssueAutoAssignCompleted", + "description": "Auto assign completed issues to current cycle.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleLockToActive", + "description": "Auto assign issues to current cycle if in active status.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "upcomingCycleCount", + "description": "How many upcoming cycles to create.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timezone", + "description": "The timezone of the team. Defaults to \"America/Los_Angeles\"", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviteHash", + "description": "Unique hash for the team to be used in invite URLs.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueEstimationType", + "description": "The issue estimation type to use. Must be one of \"notUsed\", \"exponential\", \"fibonacci\", \"linear\", \"tShirt\".", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueOrderingNoPriorityFirst", + "description": "Whether issues without priority should be sorted first.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueEstimationAllowZero", + "description": "Whether to allow zeros in issues estimates.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setIssueSortOrderOnStateChange", + "description": "Where to move issues when changing state.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueEstimationExtended", + "description": "Whether to add additional points to the estimate scale.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultIssueEstimate", + "description": "What to use as an default estimate for unestimated issues.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageEnabled", + "description": "Whether triage mode is enabled for the team or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requirePriorityToLeaveTriage", + "description": "Whether an issue needs to have a priority set before leaving triage.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultIssueState", + "description": "The default workflow state into which issues are set when they are opened by team members.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultTemplateForMembers", + "description": "The default template to use for new issues created by members of the team.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultTemplateForMembersId", + "description": "The id of the default template to use for new issues created by members of the team.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use defaultTemplateForMembers instead" + }, + { + "name": "defaultTemplateForNonMembers", + "description": "The default template to use for new issues created by non-members of the team.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultTemplateForNonMembersId", + "description": "The id of the default template to use for new issues created by non-members of the team.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use defaultTemplateForNonMembers instead" + }, + { + "name": "defaultProjectTemplate", + "description": "The default template to use for new projects created for the team.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageIssueState", + "description": "The workflow state into which issues are set when they are opened by non-team members or integrations if triage is enabled.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "private", + "description": "Whether the team is private or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scimManaged", + "description": "Whether the team is managed by SCIM integration.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "draftWorkflowState", + "description": "The workflow state into which issues are moved when a PR has been opened as draft.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use team.gitAutomationStates instead." + }, + { + "name": "startWorkflowState", + "description": "The workflow state into which issues are moved when a PR has been opened.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use team.gitAutomationStates instead." + }, + { + "name": "reviewWorkflowState", + "description": "The workflow state into which issues are moved when a review has been requested for the PR.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use team.gitAutomationStates instead." + }, + { + "name": "mergeableWorkflowState", + "description": "The workflow state into which issues are moved when a PR is ready to be merged.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use team.gitAutomationStates instead." + }, + { + "name": "mergeWorkflowState", + "description": "The workflow state into which issues are moved when a PR has been merged.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use team.gitAutomationStates instead." + }, + { + "name": "groupIssueHistory", + "description": "Whether to group recent issue history entries.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackNewIssue", + "description": "Whether to send new issue notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueComments", + "description": "Whether to send new issue comment notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueStatuses", + "description": "Whether to send new issue status updates to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoClosePeriod", + "description": "Period after which issues are automatically closed in months. Null/undefined means disabled.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoCloseStateId", + "description": "The canceled workflow state which auto closed issues will be set to. Defaults to the first canceled state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivePeriod", + "description": "Period after which automatically closed and completed issues are automatically archived in months.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "markedAsDuplicateWorkflowState", + "description": "The workflow state into which issues are moved when they are marked as a duplicate of another issue. Defaults to the first canceled state.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "joinByDefault", + "description": "[INTERNAL] Whether new users should join this team by default.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleCalenderUrl", + "description": "Calendar feed URL (iCal) for cycles.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the team.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueCount", + "description": "Number of issues in the team.", + "args": [ + { + "name": "includeArchived", + "description": "Include archived issues in the count.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycles", + "description": "Cycles associated with the team.", + "args": [ + { + "name": "filter", + "description": "Filter returned cycles.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CycleFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CycleConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCycle", + "description": "Team's currently active cycle.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibility", + "description": "Team's triage responsibility.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members", + "description": "Users who are members of this team.", + "args": [ + { + "name": "filter", + "description": "Filter returned users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships", + "description": "Memberships associated with the team. For easier access of the same data, use `members` query.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "Projects associated with the team.", + "args": [ + { + "name": "filter", + "description": "Filter returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "states", + "description": "The states that define the workflow associated with the team.", + "args": [ + { + "name": "filter", + "description": "Filter returned workflow states.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationStates", + "description": "The Git automation states for the team.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationStateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templates", + "description": "Templates associated with the team.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemplateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": "Labels associated with the team.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", + "description": "Webhooks associated with the team.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettings", + "description": "Settings for all integrations associated with that team.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueSortOrderDefaultToBottom", + "description": "[DEPRECATED] Whether to move issues to bottom of the column when changing state.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Use setIssueSortOrderOnStateChange instead." + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamMembership", + "description": "Defines the membership of a user to a team.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that the membership is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the membership is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "Whether the user is the owner of the team.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the users team list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamMembershipEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembership", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamMembershipConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembership", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeScheduleEntry", + "description": null, + "fields": [ + { + "name": "startsAt", + "description": "The start date of the schedule in ISO 8601 date-time format.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endsAt", + "description": "The end date of the schedule in ISO 8601 date-time format.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": "The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userEmail", + "description": "The email, name or reference to the user on schedule. This is used in case the external user could not be mapped to a Linear user id.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeSchedule", + "description": "A time schedule.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the schedule.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entries", + "description": "The schedule entries.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeScheduleEntry", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": "The identifier of the external schedule.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUrl", + "description": "The URL to the external schedule.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization of the schedule.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The identifier of the Linear integration populating the schedule.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeScheduleEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeScheduleConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeScheduleEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibilityManualSelection", + "description": null, + "fields": [ + { + "name": "userIds", + "description": "The set of users responsible for triage.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignmentIndex", + "description": "[INTERNAL] The index of the current userId used for the assign action when having more than one user.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibility", + "description": "A team's triage responsibility.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action", + "description": "The action to take when an issue is added to triage.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TriageResponsibilityAction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manualSelection", + "description": "Set of users used for triage responsibility.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "TriageResponsibilityManualSelection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team to which the triage responsibility belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeSchedule", + "description": "The time schedule used for scheduling.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currentUser", + "description": "The user currently responsible for triage.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TriageResponsibilityAction", + "description": "Which action should be taken after an issue is added to triage.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "assign", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notify", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibilityEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibilityConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibilityEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserSettings", + "description": "The settings of a user as a JSON object.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationPreferences", + "description": "The notification channel settings the user has selected.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsubscribedFrom", + "description": "The email types the user has unsubscribed from.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": true, + "deprecationReason": "Use individual subscription fields instead. This field's value is now outdated." + }, + { + "name": "user", + "description": "The user associated with these settings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "calendarHash", + "description": "Hash for the user to be used in calendar URLs.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribedToChangelog", + "description": "Whether this user is subscribed to changelog email or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribedToDPA", + "description": "Whether this user is subscribed to DPA emails or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribedToInviteAccepted", + "description": "Whether this user is subscribed to invite accepted emails or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribedToPrivacyLegalUpdates", + "description": "Whether this user is subscribed to privacy and legal update emails or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribedToUnreadNotificationsReminder", + "description": "Whether this user is subscribed to unread notifications reminder emails or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showFullUserNames", + "description": "Whether to show full user names instead of display names.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ViewPreferencesValues", + "description": null, + "fields": [ + { + "name": "viewOrdering", + "description": "The issue ordering.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueGrouping", + "description": "The issue grouping.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showCompletedIssues", + "description": "Whether to show completed issues.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ViewPreferences", + "description": "View preferences.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The view preference type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewType", + "description": "The view type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preferences", + "description": "The view preferences", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ViewPreferencesValues", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Webhook", + "description": "A webhook used to send HTTP notifications over data updates.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "Webhook label.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Webhook URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": "Whether the Webhook is enabled.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the webhook is associated with. If null, the webhook is associated with all public teams of the organization.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allPublicTeams", + "description": "Whether the Webhook is enabled for all public teams, including teams created after the webhook was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the webhook.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secret", + "description": "Secret token for verifying the origin on the recipient side.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceTypes", + "description": "The resource types this webhook is subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WebhookEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WebhookConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinition", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the workflow cron job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The description of the workflow cron job.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the workflow cron job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the workflow cron job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schedule", + "description": "Cron schedule which is used to execute the workflow cron job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activities", + "description": "An array of activities that will be executed as part of the workflow cron job.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the workflow cron job definition within its siblings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinitionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinition", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinitionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinitionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinition", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowDefinition", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupName", + "description": "The name of the group that the workflow belongs to.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The description of the workflow.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of the workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WorkflowType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trigger", + "description": "The type of the event that triggers off the workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WorkflowTrigger", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggerType", + "description": "The object type (e.g. Issue) that triggers this workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WorkflowTriggerType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "conditions", + "description": "The conditions that need to be match for the workflow to be triggered.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enabled", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the workflow. If not set, the workflow is associated with the entire organization.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activities", + "description": "An array of activities that will be executed as part of the workflow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order of the workflow definition within its siblings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the workflow.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the workflow.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The contextual user view associated with the workflow.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the workflow.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The context custom view associated with the workflow.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which this workflow's context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which this workflow's context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WorkflowType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "sla", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewSubscription", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WorkflowTrigger", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "entityCreated", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityUpdated", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityCreatedOrUpdated", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityRemoved", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityUnarchived", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WorkflowTriggerType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "issue", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ContextViewType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "activeIssues", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCycle", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "upcomingCycle", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "backlog", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triage", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserContextViewType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "assigned", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowDefinitionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowDefinition", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowDefinitionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowDefinitionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowDefinition", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowState", + "description": "A state in a team workflow.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The state's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The state's UI color as a HEX string.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Description of the state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "position", + "description": "The position of the state in the team flow.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "The type of the state. One of \"triage\", \"backlog\", \"unstarted\", \"started\", \"completed\", \"canceled\".", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team to which this state belongs to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues belonging in this state.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowStateEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowStateConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStateEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationSubscriptionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationSubscriptionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationSubscriptionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SynchronizedPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeletePayload", + "description": "A generic payload return from entity deletion mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityId", + "description": "The identifier of the deleted entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssuePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueBatchPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "The issues that were updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthSuccessPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthApiKeyPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authApiKey", + "description": "The auth API key that was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthApiKey", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApiKeyPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiKey", + "description": "The API key that was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKey", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Application", + "description": "Public information of the OAuth application.", + "fields": [ + { + "name": "id", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Information about the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developer", + "description": "Name of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developerUrl", + "description": "Url of the developer (homepage or docs).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAuthorizedApplication", + "description": "Public information of the OAuth application, plus whether the application has been authorized for the given scopes.", + "fields": [ + { + "name": "id", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Information about the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developer", + "description": "Name of the developer.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "developerUrl", + "description": "Url of the developer (homepage or docs).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAuthorized", + "description": "Whether the user has authorized the application for the given scopes.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdByLinear", + "description": "Whether the application was created by Linear.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooksEnabled", + "description": "Whether or not webhooks are enabled for the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "approvalErrorCode", + "description": "Error associated with the application needing to be requested for approval in the workspace.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthorizedApplication", + "description": "[INTERNAL] Public information of the OAuth application, plus the authorized scopes for a given user.", + "fields": [ + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes that are authorized for this application for a given user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appId", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooksEnabled", + "description": "Whether or not webhooks are enabled for the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkspaceAuthorizedApplication", + "description": "[INTERNAL] Public information of the OAuth application, plus the userIds and scopes for those users.", + "fields": [ + { + "name": "name", + "description": "Application name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUrl", + "description": "Image of the application.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "Scopes that are authorized for this application for a given user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appId", + "description": "OAuth application's ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": "OAuth application's client ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooksEnabled", + "description": "Whether or not webhooks are enabled for the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalMembers", + "description": "Total number of members that authorized the application.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memberships", + "description": "UserIds and membership dates of everyone who has authorized the application with the set of scopes.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthMembership", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachment", + "description": "The issue attachment that was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FrontAttachmentPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentSourcesPayload", + "description": null, + "fields": [ + { + "name": "sources", + "description": "A unique list of all source types used in this workspace.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttachmentArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuditEntryEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuditEntry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuditEntryConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuditEntryEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuditEntry", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuditEntryType", + "description": null, + "fields": [ + { + "name": "type", + "description": "The audit entry type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "Description of the audit entry type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SsoUrlFromEmailResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlSsoUrl", + "description": "SAML SSO sign-in URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthResolverResponse", + "description": null, + "fields": [ + { + "name": "id", + "description": "User account ID.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "Email for the authenticated account.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowDomainAccess", + "description": "Should the signup flow allow access for the domain.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": "List of active users that belong to the user account.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthUser", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availableOrganizations", + "description": "List of organizations allowing this user account to join automatically.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lockedOrganizations", + "description": "List of organization available to this user account but locked due to the current auth method.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsedOrganizationId", + "description": "ID of the organization last accessed by the user.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": "Application token.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Deprecated and not used anymore. Never populated." + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LogoutResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateOrJoinOrganizationResponse", + "description": null, + "fields": [ + { + "name": "organization", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthenticationSessionResponse", + "description": "Authentication session information.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Type of application used to authenticate.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AuthenticationSessionType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ip", + "description": "IP address.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCountry", + "description": "Location country name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCountryCode", + "description": "Location country code.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countryCodes", + "description": "Country codes of all seen locations.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationRegionCode", + "description": "Location region code.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locationCity", + "description": "Location city name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userAgent", + "description": "Session's user-agent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "browserType", + "description": "Used web browser.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastActiveAt", + "description": "When was the session last seen", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "Date when the session was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "Date when the session was last updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": "Human readable location", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "operatingSystem", + "description": "Operating system used for the session", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "client", + "description": "Client used for the session", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "Name of the session, derived from the client and operating system", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isCurrentSession", + "description": "Identifies the session used to make the request.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationRegionResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": "The region for the organization.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmailUserAccountAuthChallengeResponse", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authType", + "description": "Supported challenge for this user account. Can be either verificationCode or password.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommentPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": "The comment that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ContactPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The custom view that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewSuggestionPayload", + "description": null, + "fields": [ + { + "name": "name", + "description": "The suggested view name.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The suggested view description.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The suggested view icon.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewHasSubscribersPayload", + "description": null, + "fields": [ + { + "name": "hasSubscribers", + "description": "Whether the custom view has subscribers.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CyclePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The Cycle that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CycleArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiaryEntryPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diaryEntry", + "description": "The diary entry that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentContentHistoryType", + "description": null, + "fields": [ + { + "name": "id", + "description": "The UUID of the document content history entry.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The date when the document content history entry was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentDataSnapshotAt", + "description": "The date when the document content history snapshot was taken. This can be different than createdAt since the content is captured from its state at the previously known updatedAt timestamp in the case of an update. On document create, these timestamps can be the same.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentData", + "description": "[Internal] The document content as Prosemirror document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actorIds", + "description": "The ID of the author of the change.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentContentHistoryPayload", + "description": null, + "fields": [ + { + "name": "history", + "description": "The document content history entries.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentContentHistoryType", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "document", + "description": "The document that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmailIntakeAddressPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailIntakeAddress", + "description": "The email address that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailIntakeAddress", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmailUnsubscribePayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EmojiPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emoji", + "description": "The emoji that was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Emoji", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EntityExternalLinkPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityExternalLink", + "description": "The link that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeToProjectPayload", + "description": "[INTERNAL] The result of a initiativeToProject mutation.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProject", + "description": "The initiativeToProject that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativePayload", + "description": "[Internal] The payload returned by the initiative mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "The initiative that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InitiativeArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FavoritePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "The object that was added as a favorite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UploadFileHeader", + "description": null, + "fields": [ + { + "name": "key", + "description": "Upload file header key.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": "Upload file header value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UploadFile", + "description": "Object representing Google Cloud upload policy, plus additional data.", + "fields": [ + { + "name": "filename", + "description": "The filename.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentType", + "description": "The content type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", + "description": "The size of the uploaded file.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uploadUrl", + "description": "The signed URL the for the uploaded file. (assigned automatically).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assetUrl", + "description": "The asset URL for the uploaded file. (assigned automatically).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaData", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadFileHeader", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UploadPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uploadFile", + "description": "Object describing the file to be uploaded.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "UploadFile", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageUploadFromUrlPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The URL containing the image.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationStatePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationState", + "description": "The automation state that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationTargetBranchPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetBranch", + "description": "The Git target branch automation that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationTargetBranch", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationRequestPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The integration that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubCommitIntegrationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The integration that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookSecret", + "description": "The webhook secret to provide to GitHub.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AsksChannelConnectPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The integration that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mapping", + "description": "The new Asks Slack channel mapping for the connected channel.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackChannelNameMapping", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addBot", + "description": "Whether the bot needs to be manually added to the channel.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackChannelConnectPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "The integration that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addBot", + "description": "Whether the bot needs to be manually added to the channel.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nudgeToConnectMainSlackIntegration", + "description": "Whether it's recommended to connect main Slack integration.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nudgeToUpdateMainSlackIntegration", + "description": "Whether it's recommended to update main Slack integration.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationHasScopesPayload", + "description": null, + "fields": [ + { + "name": "hasAllScopes", + "description": "Whether the integration has the required scopes.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "missingScopes", + "description": "The missing scopes.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationsSettingsPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettings", + "description": "The settings that were created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IntegrationTemplatePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationTemplate", + "description": "The IntegrationTemplate that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueImportPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImport", + "description": "The import job that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueImport", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueImportDeletePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImport", + "description": "The import job that was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueImport", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueImportCheckPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GithubRepo", + "description": "Relevant information for the GitHub repository.", + "fields": [ + { + "name": "id", + "description": "The id of the GitHub repository.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the GitHub repository.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GithubOrg", + "description": "Relevant information for the GitHub organization.", + "fields": [ + { + "name": "id", + "description": "GitHub organization id.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "The login for the GitHub organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repositories", + "description": "Repositories that the organization owns.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GithubRepo", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isPersonal", + "description": "Whether or not this org is the user's personal repositories.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GithubOAuthTokenPayload", + "description": "GitHub OAuth token, plus information about the organizations the user is a member of.", + "fields": [ + { + "name": "token", + "description": "The OAuth token if the operation to fetch it was successful.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizations", + "description": "A list of the GitHub organizations the user is a member of with attached repositories.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GithubOrg", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueImportSyncCheckPayload", + "description": "Whether an issue import can be synced at the end of an import or not", + "fields": [ + { + "name": "canSync", + "description": "Returns true if the import can be synced, false otherwise", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error", + "description": "An error message with a root cause of why the import cannot be synced", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueLabelPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabel", + "description": "The label that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelation", + "description": "The issue relation that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssuePriorityValue", + "description": null, + "fields": [ + { + "name": "priority", + "description": "Priority's number value.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "Priority's label.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueFilterSuggestionPayload", + "description": null, + "fields": [ + { + "name": "filter", + "description": "The json filter that is suggested.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": "The notification that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notifications", + "description": "The notifications that were updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscription", + "description": "The notification subscription that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDomainPayload", + "description": "[INTERNAL] Organization domain operation response.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDomain", + "description": "The organization domain that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDomain", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDomainSimplePayload", + "description": "[INTERNAL] Organization domain operation response.", + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDomainClaimPayload", + "description": "[INTERNAL] Domain claim request response.", + "fields": [ + { + "name": "verificationString", + "description": "String to put into DNS for verification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInviteLinkDetailsPayload", + "description": null, + "fields": [ + { + "name": "organizationName", + "description": "Name of the workspace the invite link is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationId", + "description": "ID of the workspace the invite link is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationLogoUrl", + "description": "URL of the workspace logo the invite link is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationUrlKey", + "description": "URL key of the workspace the invite link is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationRegion", + "description": "Region of the workspace the invite link is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAuthServices", + "description": "Allowed authentication providers, empty array means all are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInviteFullDetailsPayload", + "description": null, + "fields": [ + { + "name": "status", + "description": "The status of the invite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrganizationInviteStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviter", + "description": "The name of the inviter.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "The email of the invitee.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": "What user role the invite should grant.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserRoleType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "When the invite was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationName", + "description": "Name of the workspace the invite is for.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationId", + "description": "ID of the workspace the invite is for.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationLogoUrl", + "description": "URL of the workspace logo the invite is for.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accepted", + "description": "Whether the invite has already been accepted.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expired", + "description": "Whether the invite has expired.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAuthServices", + "description": "Allowed authentication providers, empty array means all are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OrganizationInviteStatus", + "description": "The different statuses possible for an organization invite.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "pending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accepted", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expired", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationAcceptedOrExpiredInviteDetailsPayload", + "description": null, + "fields": [ + { + "name": "status", + "description": "The status of the invite.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrganizationInviteStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInvitePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInvite", + "description": "The organization invite that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOrganizationPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authOrganization", + "description": "The auth organization that was updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthOrganization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthOrganizationExistsPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exists", + "description": "Whether the organization exists.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The organization that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDeletePayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationCancelDeletePayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationStartPlusTrialPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationExistsPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "exists", + "description": "Whether the organization exists.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationMeta", + "description": null, + "fields": [ + { + "name": "region", + "description": "The region the organization is hosted in.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAuthServices", + "description": "Allowed authentication providers, empty array means all are allowed.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectLinkPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLink", + "description": "The project that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectMilestonePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "The project milestone that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectRelationPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelation", + "description": "The project relation that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectFilterSuggestionPayload", + "description": null, + "fields": [ + { + "name": "filter", + "description": "The json filter that is suggested.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectDetailSuggestionPayload", + "description": null, + "fields": [ + { + "name": "color", + "description": "The suggested project color.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The suggested view icon.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateInteraction", + "description": "The project update interaction that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdatePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateWithInteractionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interaction", + "description": "The project update that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateReminderPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SummaryPayload", + "description": null, + "fields": [ + { + "name": "summary", + "description": "Summary for project updates.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PushSubscriptionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The push subscription that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PushSubscriptionTestPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RateLimitPayload", + "description": null, + "fields": [ + { + "name": "identifier", + "description": "The identifier we rate limit on.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kind", + "description": "The kind of rate limit selected for this request.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limits", + "description": "The state of the rate limit.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RateLimitResultPayload", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RateLimitResultPayload", + "description": null, + "fields": [ + { + "name": "type", + "description": "What is being rate limited.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requestedAmount", + "description": "The requested quantity for this type of limit.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowedAmount", + "description": "The total allowed quantity for this type of limit.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "period", + "description": "The period in which the rate limit is fully replenished in ms.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "remainingAmount", + "description": "The remaining quantity for this type of limit after this request.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reset", + "description": "The timestamp after the rate limit is fully replenished as a UNIX timestamp.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReactionPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reaction", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReactionEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReactionConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReactionEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reaction", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CreateCsvExportReportPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmap", + "description": "The roadmap that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RoadmapToProjectPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProject", + "description": "The roadmapToProject that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ArchiveResponse", + "description": "Contains requested archived model objects.", + "fields": [ + { + "name": "archive", + "description": "A JSON serialized collection of model objects loaded from the archive", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "The total number of entities in the archive.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "databaseVersion", + "description": "The version of the remote database. Incremented by 1 for each migration run on the database.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "includesDependencies", + "description": "Whether the dependencies for the model objects are included in the archive.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueSearchResult", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "The issue's unique number.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "The issue's title.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priority", + "description": "The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "estimate", + "description": "The estimate of the complexity of the issue..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "boardOrder", + "description": "The order of the item in its column on the board.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Will be removed in near future, please use `sortOrder` instead" + }, + { + "name": "sortOrder", + "description": "The order of the item in relation to other items in the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt", + "description": "The time at which the issue was moved into started state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "The time at which the issue was moved into completed state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedTriageAt", + "description": "The time at which the issue entered triage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triagedAt", + "description": "The time at which the issue left triage.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The time at which the issue was moved into canceled state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoClosedAt", + "description": "The time at which the issue was automatically closed by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivedAt", + "description": "The time at which the issue was automatically archived by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dueDate", + "description": "The date at which the issue is due.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slaStartedAt", + "description": "The time at which the issue's SLA began.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slaBreachesAt", + "description": "The time at which the issue's SLA will breach.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trashed", + "description": "A flag that indicates whether the issue is in the trash bin.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until an issue will be snoozed in Triage view.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelIds", + "description": "Id of the labels associated with this issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that the issue is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The cycle that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "The projectMilestone that the issue is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "previousIdentifiers", + "description": "Previous identifiers of the issue if it has been moved between teams.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserCreator", + "description": "The external user who created the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignee", + "description": "The user to whom the issue is assigned to.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedBy", + "description": "The user who snoozed the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "The workflow state that the issue is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subIssueSortOrder", + "description": "The order of the item in the sub-issue list. Only set if the issue has a parent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priorityLabel", + "description": "Label for the priority.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sourceComment", + "description": "The comment that this issue was created from.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSourceType", + "description": "Integration type that created this issue, if applicable.", + "args": [], + "type": { + "kind": "ENUM", + "name": "IntegrationService", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that created the issue, if applicable.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "The users favorite associated with this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "identifier", + "description": "Issue's human readable identifier (e.g. ENG-123).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Issue URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branchName", + "description": "Suggested branch name for the issue.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerTicketCount", + "description": "Returns the number of Attachment resources which are created by customer support ticketing systems (e.g. Zendesk).", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribers", + "description": "Users who are subscribed to the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned subscribers.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": "The parent of the issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Children of the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": "Comments associated with the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "history", + "description": "History entries associated with the issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueHistoryConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": "Labels associated with this issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "relations", + "description": "Relations associated with this issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inverseRelations", + "description": "Inverse relations associated with this issue.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": "Attachments associated with the issue.", + "args": [ + { + "name": "filter", + "description": "Filter returned attachments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The issue's description in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionData", + "description": "[Internal] The issue's description as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use description instead." + }, + { + "name": "descriptionState", + "description": "[Internal] The issue's description content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "Metadata related to search result.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentSearchResult", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "The document title.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The color of the icon.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "The user who last updated the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project that the document is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "[Internal] The initiative that the document is associated with.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The document's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this document.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hiddenAt", + "description": "The time at which the document was hidden. Null if the entity has not been hidden.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the resources list.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "content", + "description": "The documents content in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentState", + "description": "[Internal] The documents content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "The canonical url for the document.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentData", + "description": "[Internal] The documents content as a Prosemirror document.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use content instead." + }, + { + "name": "metadata", + "description": "Metadata related to search result.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSearchResult", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The project's name.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "The project's description.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugId", + "description": "The project's unique URL slug.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color", + "description": "The project's color.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": "The status that the project is associated with.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "creator", + "description": "The user who created the project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lead", + "description": "The project lead.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateRemindersPausedUntilAt", + "description": "The time until which project update reminders are paused.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startDate", + "description": "The estimated start date of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startDateResolution", + "description": "[INTERNAL] The resolution of the project's start date.", + "args": [], + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDate", + "description": "The estimated completion date of the project.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetDateResolution", + "description": "[INTERNAL] The resolution of the project's estimated completion date.", + "args": [], + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "startedAt", + "description": "The time at which the project was moved into started state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "The time at which the project was moved into completed state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canceledAt", + "description": "The time at which the project was moved into canceled state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "autoArchivedAt", + "description": "The time at which the project was automatically archived by the auto pruning process.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trashed", + "description": "A flag that indicates whether the project is in the trash bin.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project within the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "convertedFromIssue", + "description": "The project was created based on this issue.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastAppliedTemplate", + "description": "The last template that was applied to this project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueCountHistory", + "description": "The total number of issues in the project after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedIssueCountHistory", + "description": "The number of completed issues in the project after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scopeHistory", + "description": "The total number of estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedScopeHistory", + "description": "The number of completed estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inProgressScopeHistory", + "description": "The number of in progress estimation points after each week.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackNewIssue", + "description": "Whether to send new issue notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueComments", + "description": "Whether to send new issue comment notifications to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackIssueStatuses", + "description": "Whether to send new issue status updates to Slack.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "The user's favorite associated with this project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "Project URL.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "Teams associated with this project.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members", + "description": "Users that are members of the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdates", + "description": "Project updates associated with the project.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documents", + "description": "Documents associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned documents.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestones", + "description": "Milestones associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestoneConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "Issues associated with the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "links", + "description": "Links associated with the project.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "progress", + "description": "The overall progress of the project. This is the (completed estimate points + 0.25 * in progress estimate points) / total estimate points.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": "The overall scope (total estimate points) of the project.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettings", + "description": "Settings for all integrations associated with that project.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "content", + "description": "The project's content in markdown format.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentState", + "description": "[Internal] The project's content as YJS state.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "[DEPRECATED] The type of the state.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Use project.status instead" + }, + { + "name": "metadata", + "description": "Metadata related to search result.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueSearchResultEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueSearchResultConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueSearchPayload", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivePayload", + "description": "Archived entities matching the search term along with all their dependencies.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArchiveResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "Total number of results for query without filters applied.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentSearchResultEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentSearchResultConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentSearchPayload", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivePayload", + "description": "Archived entities matching the search term along with all their dependencies.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArchiveResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "Total number of results for query without filters applied.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSearchResultEdge", + "description": null, + "fields": [ + { + "name": "node", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cursor", + "description": "Used in `before` and `after` args", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSearchResultConnection", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSearchPayload", + "description": null, + "fields": [ + { + "name": "edges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchResultEdge", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchResult", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pageInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivePayload", + "description": "Archived entities matching the search term along with all their dependencies.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArchiveResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": "Total number of results for query without filters applied.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamMembershipPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMembership", + "description": "The team membership that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "TeamMembership", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TemplatePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "template", + "description": "The template that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeSchedulePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeSchedule", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibilityPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibility", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that was created or updated.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserAdminPayload", + "description": null, + "fields": [ + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserSettingsPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSettings", + "description": "The user's settings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserSettingsFlagPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "flag", + "description": "The flag key which was updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": "The flag value after update.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserSettingsFlagsResetPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ViewPreferencesPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewPreferences", + "description": "The view preferences entity being mutated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ViewPreferences", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WebhookPayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook", + "description": "The webhook entity being mutated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowStatePayload", + "description": null, + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowState", + "description": "The state that was created or updated.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WorkflowStateArchivePayload", + "description": "A generic payload return from entity archive mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity", + "description": "The archived/unarchived entity. Null if entity was deleted.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": null, + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ApiKey", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Reminder", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AuditEntry", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Reaction", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Company", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DiaryEntry", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Document", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentContentHistory", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentContent", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EmailIntakeAddress", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Emoji", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EntityExternalLink", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Template", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InitiativeToProject", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RoadmapToProject", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Facet", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationTargetBranch", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GitAutomationState", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueDraft", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueHistory", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueImport", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueRelation", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApproval", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OauthClient", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OrganizationDomain", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OrganizationInvite", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectLink", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectRelation", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectStatus", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PushSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PaidSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TeamMembership", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserSettings", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ViewPreferences", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "WorkflowCronJobDefinition", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "WorkflowDefinition", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueSearchResult", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentSearchResult", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectSearchResult", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApprovalNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomViewNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CycleNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LabelNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TeamNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserNotificationSubscription", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "Notification", + "description": "A notification sent to a user.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Notification type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserActor", + "description": "The external user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that received the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at when the user marked the notification as read. Null, if the the user hasn't read the notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailedAt", + "description": "The time at when an email reminder for this notification was sent to the user. Null, if no email\n reminder has been sent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsnoozedAt", + "description": "The time at which a notification was unsnoozed..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "IssueNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApprovalNotification", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DocumentNotification", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "description": "Notification subscriptions for models.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CustomViewNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CycleNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LabelNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TeamNotificationSubscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UserNotificationSubscription", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "ArchivePayload", + "description": "A generic payload return from entity archive or deletion mutations.", + "fields": [ + { + "name": "lastSyncId", + "description": "The identifier of the last sync operation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Whether the operation was successful.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AttachmentArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CycleArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InitiativeArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "IssueArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NotificationArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RoadmapArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TeamArchivePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "WorkflowStateArchivePayload", + "ofType": null + } + ] + }, + { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "description": "Comparator for booleans.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "description": "[Internal] Comparator for content.", + "fields": null, + "inputFields": [ + { + "name": "contains", + "description": "[Internal] Contains constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContains", + "description": "[Internal] Not-contains constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "description": "Comparator for dates.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "description": "Represents a date and time in ISO 8601 format. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings which are added to the current date to create the represented date (e.g '-P2W1D' represents the date that was two weeks and 1 day ago) ", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "description": "Comparator for optional dates.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "DateTimeOrDuration", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EstimateComparator", + "description": "Comparator for estimates.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, all of which need to be matched by the estimate.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, one of which need to be matched by the estimate.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "description": "Comparator for relation existence.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "description": "Comparator for identifiers.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "description": "Comparator for numbers.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "description": "Comparator for optional numbers.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "description": "Comparator for strings.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "eqIgnoreCase", + "description": "Equals case insensitive. Matches any values that matches the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neqIgnoreCase", + "description": "Not-equals case insensitive. Matches any values that don't match the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWith", + "description": "Starts with constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWithIgnoreCase", + "description": "Starts with case insensitive constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notStartsWith", + "description": "Doesn't start with constraint. Matches any values that don't start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsWith", + "description": "Ends with constraint. Matches any values that end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notEndsWith", + "description": "Doesn't end with constraint. Matches any values that don't end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contains", + "description": "Contains constraint. Matches any values that contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containsIgnoreCase", + "description": "Contains case insensitive constraint. Matches any values that contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContains", + "description": "Doesn't contain constraint. Matches any values that don't contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContainsIgnoreCase", + "description": "Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "description": "Comparator for optional strings.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "eqIgnoreCase", + "description": "Equals case insensitive. Matches any values that matches the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neqIgnoreCase", + "description": "Not-equals case insensitive. Matches any values that don't match the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWith", + "description": "Starts with constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWithIgnoreCase", + "description": "Starts with case insensitive constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notStartsWith", + "description": "Doesn't start with constraint. Matches any values that don't start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsWith", + "description": "Ends with constraint. Matches any values that end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notEndsWith", + "description": "Doesn't end with constraint. Matches any values that don't end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contains", + "description": "Contains constraint. Matches any values that contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containsIgnoreCase", + "description": "Contains case insensitive constraint. Matches any values that contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContains", + "description": "Doesn't contain constraint. Matches any values that don't contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContainsIgnoreCase", + "description": "Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SourceTypeComparator", + "description": "Comparator for `sourceType` field.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "eqIgnoreCase", + "description": "Equals case insensitive. Matches any values that matches the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neqIgnoreCase", + "description": "Not-equals case insensitive. Matches any values that don't match the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWith", + "description": "Starts with constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsWithIgnoreCase", + "description": "Starts with case insensitive constraint. Matches any values that start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notStartsWith", + "description": "Doesn't start with constraint. Matches any values that don't start with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsWith", + "description": "Ends with constraint. Matches any values that end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notEndsWith", + "description": "Doesn't end with constraint. Matches any values that don't end with the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contains", + "description": "Contains constraint. Matches any values that contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containsIgnoreCase", + "description": "Contains case insensitive constraint. Matches any values that contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContains", + "description": "Doesn't contain constraint. Matches any values that don't contain the given string.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notContainsIgnoreCase", + "description": "Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TimelessDateComparator", + "description": "Comparator for timeless dates.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "description": "Represents a date in ISO 8601 format or a duration. Accepts shortcuts like `2021` to represent midnight Fri Jan 01 2021. Also accepts ISO 8601 durations strings (e.g '-P2W1D'), which are not converted to dates.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableTimelessDateComparator", + "description": "Comparator for optional timeless dates.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lt", + "description": "Less-than constraint. Matches any values that are less than the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lte", + "description": "Less-than-or-equal constraint. Matches any values that are less than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gt", + "description": "Greater-than constraint. Matches any values that are greater than the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gte", + "description": "Greater-than-or-equal constraint. Matches any values that are greater than or equal to the given value.", + "type": { + "kind": "SCALAR", + "name": "TimelessDateOrDuration", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubTypeComparator", + "description": "Comparator for source type.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SourceMetadataComparator", + "description": "Comparator for issue source type.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subType", + "description": "Compound filters, all of which need to be matched by the sub type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SubTypeComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlackAsksTeamSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The Linear team ID.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "hasDefaultAsk", + "description": "Whether the default Asks template is enabled in the given channel for this team.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlackChannelNameMappingInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The Slack channel ID.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The Slack channel name.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isPrivate", + "description": "Whether or not the Slack channel is private.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isShared", + "description": "Whether or not the Slack channel is shared with an external org.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "botAdded", + "description": "Whether or not the Linear Asks bot has been added to this Slack channel.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teams", + "description": "Which teams are connected to the channel and settings for those teams.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SlackAsksTeamSettingsInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "autoCreateOnMessage", + "description": "Whether or not top-level messages in this channel should automatically create Asks.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoCreateOnEmoji", + "description": "Whether or not using the :ticket: emoji in this channel should automatically create Asks.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoCreateOnBotMention", + "description": "Whether or not @-mentioning the bot should automatically create an Ask with the message.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoCreateTemplateId", + "description": "The optional template ID to use for Asks auto-created in this channel. If not set, auto-created Asks won't use any template.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "postCancellationUpdates", + "description": "Whether or not synced Slack threads should be updated with a message and emoji when their Ask is canceled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SharedSlackSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlackAsksSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackChannelMapping", + "description": "The mapping of Slack channel ID => Slack channel name for connected channels.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SlackChannelNameMappingInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "canAdministrate", + "description": "The user role type that is allowed to manage Asks settings.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserRoleType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntercomSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FrontSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlackSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "teamName", + "description": "Slack workspace name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "Slack workspace id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enterpriseName", + "description": "Enterprise name of the connected Slack enterprise", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shouldUnfurl", + "description": "Whether to show unfurl previews in Slack", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "linkOnIssueIdMention", + "description": "Whether Linear should automatically respond with issue unfurls when an issue identifier is mentioned in a Slack message.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlackPostSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "channel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "configurationUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelType", + "description": null, + "type": { + "kind": "ENUM", + "name": "SlackChannelType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitHubSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orgAvatarUrl", + "description": "The avatar URL for the GitHub organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orgLogin", + "description": "The GitHub organization's name.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repositories", + "description": "The names of the repositories connected for the GitHub integration.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitHubRepoInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "repositoriesMapping", + "description": "Mapping of team to repository for syncing.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamRepoMappingInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitHubPersonalSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "login", + "description": "The GitHub user's name.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitHubRepoInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fullName", + "description": "The full name of the repository.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The GitHub repo id.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamRepoMappingInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "linearTeamId", + "description": "The Linear team id to map to the given project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitHubRepoId", + "description": "The GitHub repo id.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "bidirectional", + "description": "Whether the sync for this mapping is bidirectional.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "default", + "description": "Whether this mapping is the default one for issue creation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitLabSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": "The self-hosted URL of the GitLab instance.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "readonly", + "description": "Whether the token is limited to a read-only scope.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expiresAt", + "description": "The ISO timestamp the GitLab access token expires.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GoogleSheetsSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "spreadsheetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "spreadsheetUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sheetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "updatedIssuesAt", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraProjectDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The Jira id for this project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": "The Jira key for this project, such as ENG.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The Jira name for this project, such as Engineering.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraLinearMappingInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "jiraProjectId", + "description": "The Jira id for this project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "linearTeamId", + "description": "The Linear team id to map to the given project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "bidirectional", + "description": "Whether the sync for this mapping is bidirectional.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "default", + "description": "Whether this mapping is the default one for issue creation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "projectMapping", + "description": "The mapping of Jira project id => Linear team id.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JiraLinearMappingInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "projects", + "description": "The Jira projects for the organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JiraProjectDataInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "isJiraServer", + "description": "Whether this integration is for Jira Server or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraPersonalSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "siteName", + "description": "The name of the Jira site currently authorized through the integration.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotionSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "workspaceId", + "description": "The ID of the Notion workspace being connected.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "workspaceName", + "description": "The name of the Notion workspace being connected.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OpsgenieInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "apiFailedWithUnauthorizedErrorAt", + "description": "The date when the Opsgenie API failed with an unauthorized error.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PagerDutyInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "apiFailedWithUnauthorizedErrorAt", + "description": "The date when the PagerDuty API failed with an unauthorized error.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SentrySettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "organizationSlug", + "description": "The slug of the Sentry organization being connected.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ZendeskSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sendNoteOnStatusChange", + "description": "Whether an internal message should be added when a Linear issue changes status (for status types except completed or canceled).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sendNoteOnComment", + "description": "Whether an internal message should be added when someone comments on an issue.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCompletion", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is completed.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnCancellation", + "description": "Whether a ticket should be automatically reopened when its linked Linear issue is cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automateTicketReopeningOnComment", + "description": "Whether a ticket should be automatically reopened when a comment is posted on its linked Linear issue", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subdomain", + "description": "The subdomain of the Zendesk organization being connected.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the connected Zendesk organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "botUserId", + "description": "The ID of the Linear bot user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntegrationSettingsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slack", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SlackSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackAsks", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SlackAsksSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackPost", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SlackPostSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectPost", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SlackPostSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackOrgProjectUpdatesPost", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SlackPostSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "googleSheets", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GoogleSheetsSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHub", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GitHubSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubPersonal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GitHubPersonalSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitLab", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GitLabSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sentry", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SentrySettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "zendesk", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ZendeskSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "intercom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "IntercomSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "front", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FrontSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jira", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JiraSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notion", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NotionSettingsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "opsgenie", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "OpsgenieInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pagerDuty", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PagerDutyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jiraPersonal", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "JiraPersonalSettingsInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleEntryInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "startsAt", + "description": "The start date of the schedule in ISO 8601 date-time format.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "endsAt", + "description": "The end date of the schedule in ISO 8601 date-time format.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The Linear user id of the user on schedule. If the user cannot be mapped to a Linear user then `userEmail` can be used as a reference.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userEmail", + "description": "The email, name or reference to the user on schedule. This is used in case the external user could not be mapped to a Linear user id.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityManualSelectionInput", + "description": "Manual triage responsibility using a set of users.", + "fields": null, + "inputFields": [ + { + "name": "userIds", + "description": "The set of users responsible for triage.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "assignmentIndex", + "description": "[INTERNAL] The index of the current userId used for the assign action when having more than one user.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "description": "Attachment filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subtitle", + "description": "Comparator for the subtitle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "Comparator for the url.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the attachments creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceType", + "description": "Comparator for the source type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SourceTypeComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the attachment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the attachment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "description": "Attachment collection filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subtitle", + "description": "Comparator for the subtitle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "Comparator for the url.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the attachments creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceType", + "description": "Comparator for the source type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SourceTypeComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the attachment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the attachment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some attachments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all attachments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AuditEntryFilter", + "description": "Audit entry filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Comparator for the type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ip", + "description": "Comparator for the IP address.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "countryCode", + "description": "Comparator for the country code.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "actor", + "description": "Filters that the audit entry actor must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "description": "Comment filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "Comparator for the comments body.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": "Filters that the comments creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issue", + "description": "Filters that the comments issue must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdate", + "description": "Filters that the comments project update must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the comment parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentContent", + "description": "Filters that the comments document content must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentContentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "description": "Comment filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "Comparator for the comments body.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": "Filters that the comments creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issue", + "description": "Filters that the comments issue must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdate", + "description": "Filters that the comments project update must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the comment parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentContent", + "description": "Filters that the comments document content must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentContentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "description": "Comment filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "Comparator for the comments body.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": "Filters that the comments creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issue", + "description": "Filters that the comments issue must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdate", + "description": "Filters that the comments project update must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the comment parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentContent", + "description": "Filters that the comments document content must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentContentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the comment.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CycleFilter", + "description": "Cycle filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "Comparator for the cycle number.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the cycle name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsAt", + "description": "Comparator for the cycle start date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsAt", + "description": "Comparator for the cycle ends at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the cycle completed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isActive", + "description": "Comparator for the filtering active cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isInCooldown", + "description": "Comparator for filtering for whether the cycle is currently in cooldown.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isNext", + "description": "Comparator for the filtering next cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isPrevious", + "description": "Comparator for the filtering previous cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isFuture", + "description": "Comparator for the filtering future cycles.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isPast", + "description": "Comparator for the filtering past cycles.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the cycles team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the cycles issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the cycle.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CycleFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the cycle.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CycleFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "description": "Cycle filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "Comparator for the cycle number.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the cycle name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsAt", + "description": "Comparator for the cycle start date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsAt", + "description": "Comparator for the cycle ends at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the cycle completed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isActive", + "description": "Comparator for the filtering active cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isInCooldown", + "description": "Comparator for filtering for whether the cycle is currently in cooldown.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isNext", + "description": "Comparator for the filtering next cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isPrevious", + "description": "Comparator for the filtering previous cycle.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isFuture", + "description": "Comparator for the filtering future cycles.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isPast", + "description": "Comparator for the filtering past cycles.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the cycles team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the cycles issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, one of which need to be matched by the cycle.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the cycle.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "description": "Project status filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project status name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the project status description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "Comparator for the project status position.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Comparator for the project status type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projects", + "description": "Filters that the project status projects must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project status.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which needs to be matched by the project status.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "description": "Template filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the template's name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the template.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the template.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "description": "User filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the user's name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "Comparator for the user's display name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": "Comparator for the user's email.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Comparator for the user's activity status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignedIssues", + "description": "Filters that the users assigned issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "admin", + "description": "Comparator for the user's admin status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isMe", + "description": "Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "description": "User filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the user's name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "Comparator for the user's display name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": "Comparator for the user's email.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Comparator for the user's activity status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignedIssues", + "description": "Filters that the users assigned issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "admin", + "description": "Comparator for the user's admin status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isMe", + "description": "Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "description": "User filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the user's name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "Comparator for the user's display name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": "Comparator for the user's email.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Comparator for the user's activity status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignedIssues", + "description": "Filters that the users assigned issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "admin", + "description": "Comparator for the user's admin status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isMe", + "description": "Filter based on the currently authenticated user. Set to true to filter for the authenticated user, false for any other user.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BooleanComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the user.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeFilter", + "description": "Initiative filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the initiative name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the initiative slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the initiative creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the initiative.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the initiative.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "description": "Initiative collection filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the initiative name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the initiative slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the initiative creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the initiative.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the initiative.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some initiatives.", + "type": { + "kind": "INPUT_OBJECT", + "name": "InitiativeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all initiatives.", + "type": { + "kind": "INPUT_OBJECT", + "name": "InitiativeFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "description": "Project filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the project slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "[DEPRECATED] Comparator for the project state.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "Filters that the project's status must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the project's content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the project completion date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startDate", + "description": "Comparator for the project start date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "health", + "description": "Comparator for the project health.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the projects creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lead", + "description": "Filters that the projects lead must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "members", + "description": "Filters that the projects members must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the projects issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmaps", + "description": "Filters that the projects roadmaps must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiatives", + "description": "Filters that the projects initiatives must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestones", + "description": "Filters that the project's milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedProjectMilestones", + "description": "Filters that the project's completed milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nextProjectMilestone", + "description": "Filters that the project's next milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accessibleTeams", + "description": "Filters that the project's team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "description": "Project filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the project slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "[DEPRECATED] Comparator for the project state.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "Filters that the project's status must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the project's content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the project completion date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startDate", + "description": "Comparator for the project start date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "health", + "description": "Comparator for the project health.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the projects creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lead", + "description": "Filters that the projects lead must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "members", + "description": "Filters that the projects members must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the projects issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmaps", + "description": "Filters that the projects roadmaps must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiatives", + "description": "Filters that the projects initiatives must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestones", + "description": "Filters that the project's milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedProjectMilestones", + "description": "Filters that the project's completed milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nextProjectMilestone", + "description": "Filters that the project's next milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accessibleTeams", + "description": "Filters that the project's team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCollectionFilter", + "description": "Project filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the project slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "[DEPRECATED] Comparator for the project state.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "Filters that the project's status must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectStatusFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the project's content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the project completion date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startDate", + "description": "Comparator for the project start date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "health", + "description": "Comparator for the project health.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the projects creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lead", + "description": "Filters that the projects lead must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "members", + "description": "Filters that the projects members must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the projects issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmaps", + "description": "Filters that the projects roadmaps must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiatives", + "description": "Filters that the projects initiatives must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestones", + "description": "Filters that the project's milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedProjectMilestones", + "description": "Filters that the project's completed milestones must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nextProjectMilestone", + "description": "Filters that the project's next milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accessibleTeams", + "description": "Filters that the project's team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "description": "Project milestone filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project milestone name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project milestone target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the project milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "description": "Project milestone filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project milestone name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project milestone target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the project milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the project milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "description": "Milestone collection filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the project milestone name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "Comparator for the project milestone target date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the milestone.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapFilter", + "description": "Roadmap filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the roadmap name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the roadmap slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the roadmap creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "description": "Roadmap collection filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the roadmap name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the roadmap slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the roadmap creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some roadmaps.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RoadmapFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all roadmaps.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RoadmapFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "description": "Team filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the team name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Comparator for the team key.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the team description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the teams issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the team.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the team.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableTeamFilter", + "description": "Team filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the team name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Comparator for the team key.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the team description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the teams issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the team.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableTeamFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the team.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableTeamFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "description": "Roadmap collection filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the roadmap.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some roadmaps.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all roadmaps.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "description": "Workflow state filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the workflow state name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the workflow state description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "Comparator for the workflow state position.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Comparator for the workflow state type.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the workflow states team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issues", + "description": "Filters that the workflow states issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the workflow state.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the workflow state.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableDocumentContentFilter", + "description": "Document content filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the document content project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "document", + "description": "Filters that the document content document must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentContentFilter", + "description": "Document content filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the document content project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "document", + "description": "Filters that the document content document must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "description": "Issue label filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the issue labels creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the issue labels team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the issue label's parent label must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the label.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the label.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "description": "Issue label filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Comparator for the name.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the issue labels creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the issue labels team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the issue label's parent label must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the label.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the label.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "description": "ProjectUpdate filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": "Filters that the project update creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the project update project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the ProjectUpdate.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the ProjectUpdate.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "description": "Document filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the document title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the document slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the document's creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the document's project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableDocumentFilter", + "description": "Document filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the document title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the document slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the document's creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the document's project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableDocumentFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableDocumentFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentCollectionFilter", + "description": "Document filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the document title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slugId", + "description": "Comparator for the document slug ID.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the document's creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the document's project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the document.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some documents.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all documents.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlaStatusComparator", + "description": "Comparator for sla status.", + "fields": null, + "inputFields": [ + { + "name": "eq", + "description": "Equals constraint.", + "type": { + "kind": "ENUM", + "name": "SlaStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "neq", + "description": "Not-equals constraint.", + "type": { + "kind": "ENUM", + "name": "SlaStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "in", + "description": "In-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SlaStatus", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nin", + "description": "Not-in-array constraint.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SlaStatus", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SlaStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Breached", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HighRisk", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MediumRisk", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LowRisk", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Completed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Failed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Paused", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "description": "Issue filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "Comparator for the issues number.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the issues title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the issues description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priority", + "description": "Comparator for the issues priority.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "Comparator for the issues estimate.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EstimateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "Comparator for the issues started at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "triagedAt", + "description": "Comparator for the issues triaged at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the issues completed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "canceledAt", + "description": "Comparator for the issues canceled at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoClosedAt", + "description": "Comparator for the issues auto closed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoArchivedAt", + "description": "Comparator for the issues auto archived at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "Comparator for the issues due date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTimelessDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedUntilAt", + "description": "Comparator for the issues snoozed until date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignee", + "description": "Filters that the issues assignee must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceMetadata", + "description": "Filters that the source must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SourceMetadataComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the issues creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the issue parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedBy", + "description": "Filters that the issues snoozer must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labels", + "description": "Filters that issue labels must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribers", + "description": "Filters that issue subscribers must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the issues team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestone", + "description": "Filters that the issues project milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", + "description": "Filters that the issues comments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycle", + "description": "Filters that the issues cycle must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the issues project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "Filters that the issues state must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "children", + "description": "Filters that the child issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachments", + "description": "Filters that the issues attachments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the issues content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasRelatedRelations", + "description": "Comparator for filtering issues with relations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasDuplicateRelations", + "description": "Comparator for filtering issues which are duplicates.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockedByRelations", + "description": "Comparator for filtering issues which are blocked.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockingRelations", + "description": "Comparator for filtering issues which are blocking.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaStatus", + "description": "Comparator for the issues sla status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SlaStatusComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "null", + "description": "Filter based on the existence of the relation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "description": "Issue filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "Comparator for the issues number.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the issues title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the issues description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priority", + "description": "Comparator for the issues priority.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "Comparator for the issues estimate.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EstimateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "Comparator for the issues started at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "triagedAt", + "description": "Comparator for the issues triaged at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the issues completed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "canceledAt", + "description": "Comparator for the issues canceled at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoClosedAt", + "description": "Comparator for the issues auto closed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoArchivedAt", + "description": "Comparator for the issues auto archived at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "Comparator for the issues due date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTimelessDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedUntilAt", + "description": "Comparator for the issues snoozed until date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignee", + "description": "Filters that the issues assignee must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceMetadata", + "description": "Filters that the source must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SourceMetadataComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the issues creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the issue parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedBy", + "description": "Filters that the issues snoozer must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labels", + "description": "Filters that issue labels must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribers", + "description": "Filters that issue subscribers must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the issues team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestone", + "description": "Filters that the issues project milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", + "description": "Filters that the issues comments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycle", + "description": "Filters that the issues cycle must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the issues project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "Filters that the issues state must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "children", + "description": "Filters that the child issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachments", + "description": "Filters that the issues attachments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the issues content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasRelatedRelations", + "description": "Comparator for filtering issues with relations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasDuplicateRelations", + "description": "Comparator for filtering issues which are duplicates.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockedByRelations", + "description": "Comparator for filtering issues which are blocked.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockingRelations", + "description": "Comparator for filtering issues which are blocking.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaStatus", + "description": "Comparator for the issues sla status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SlaStatusComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "description": "Issue filtering options.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "Comparator for the identifier.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IDComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Comparator for the created at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Comparator for the updated at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "Comparator for the issues number.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Comparator for the issues title.", + "type": { + "kind": "INPUT_OBJECT", + "name": "StringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "Comparator for the issues description.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableStringComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priority", + "description": "Comparator for the issues priority.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableNumberComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "Comparator for the issues estimate.", + "type": { + "kind": "INPUT_OBJECT", + "name": "EstimateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "Comparator for the issues started at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "triagedAt", + "description": "Comparator for the issues triaged at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Comparator for the issues completed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "canceledAt", + "description": "Comparator for the issues canceled at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoClosedAt", + "description": "Comparator for the issues auto closed at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoArchivedAt", + "description": "Comparator for the issues auto archived at date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "Comparator for the issues due date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTimelessDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedUntilAt", + "description": "Comparator for the issues snoozed until date.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableDateComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignee", + "description": "Filters that the issues assignee must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplate", + "description": "Filters that the last applied template must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableTemplateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceMetadata", + "description": "Filters that the source must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SourceMetadataComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": "Filters that the issues creator must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": "Filters that the issue parent must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableIssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedBy", + "description": "Filters that the issues snoozer must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableUserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labels", + "description": "Filters that issue labels must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribers", + "description": "Filters that issue subscribers must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Filters that the issues team must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestone", + "description": "Filters that the issues project milestone must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comments", + "description": "Filters that the issues comments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycle", + "description": "Filters that the issues cycle must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableCycleFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Filters that the issues project must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NullableProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "Filters that the issues state must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "children", + "description": "Filters that the child issues must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attachments", + "description": "Filters that the issues attachments must satisfy.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCollectionFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchableContent", + "description": "[Internal] Comparator for the issues content.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ContentComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasRelatedRelations", + "description": "Comparator for filtering issues with relations.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasDuplicateRelations", + "description": "Comparator for filtering issues which are duplicates.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockedByRelations", + "description": "Comparator for filtering issues which are blocked.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hasBlockingRelations", + "description": "Comparator for filtering issues which are blocking.", + "type": { + "kind": "INPUT_OBJECT", + "name": "RelationExistsComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaStatus", + "description": "Comparator for the issues sla status.", + "type": { + "kind": "INPUT_OBJECT", + "name": "SlaStatusComparator", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": "Compound filters, all of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": "Compound filters, one of which need to be matched by the issue.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueCollectionFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "some", + "description": "Filters that needs to be matched by some issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "every", + "description": "Filters that needs to be matched by all issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "length", + "description": "Comparator for the collection length.", + "type": { + "kind": "INPUT_OBJECT", + "name": "NumberComparator", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowCondition", + "description": "A condition to match for the workflow to be triggered.", + "fields": null, + "inputFields": [ + { + "name": "issueFilter", + "description": "Trigger the workflow when an issue matches the filter. Can only be used when the trigger type is `Issue`.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectFilter", + "description": "Triggers the workflow when a project matches the filter. Can only be used when the trigger type is `Project`.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title of the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The issue description in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptionData", + "description": "[Internal] The issue description as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assigneeId", + "description": "The identifier of the user to assign the issue to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The identifier of the parent issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priority", + "description": "The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "The estimated complexity of the issue.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscriberIds", + "description": "The identifiers of the users subscribing to this ticket.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "labelIds", + "description": "The identifiers of the issue labels associated with this ticket.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team associated with the issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cycleId", + "description": "The cycle associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The project associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestoneId", + "description": "The project milestone associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stateId", + "description": "The team state of the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "referenceCommentId", + "description": "The comment the issue is referencing.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sourceCommentId", + "description": "The comment the issue is created from.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "boardOrder", + "description": "The position of the issue in its column on the board view.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the issue related to other issues.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subIssueSortOrder", + "description": "The position of the issue in parent's sub-issue list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "The date at which the issue is due.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createAsUser", + "description": "Create issue as a user with the provided name. This option is only available to OAuth applications creating issues in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preserveSortOrderOnCreate", + "description": "Whether the passed sort order should be preserved.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "The date when the issue was created (e.g. if importing from another system). Must be a date in the past. If none is provided, the backend will generate the time as now.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaBreachesAt", + "description": "[Internal] The timestamp at which an issue will be considered in breach of SLA.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "templateId", + "description": "The identifier of a template the issue should be created from. If other values are provided in the input, they will override template values.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": "The issue title.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The issue description in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptionData", + "description": "The issue description as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assigneeId", + "description": "The identifier of the user to assign the issue to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The identifier of the parent issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priority", + "description": "The priority of the issue. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "The estimated complexity of the issue.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscriberIds", + "description": "The identifiers of the users subscribing to this ticket.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "labelIds", + "description": "The identifiers of the issue labels associated with this ticket.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleId", + "description": "The cycle associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The project associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestoneId", + "description": "The project milestone associated with the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stateId", + "description": "The team state of the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "boardOrder", + "description": "The position of the issue in its column on the board view.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the issue related to other issues.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subIssueSortOrder", + "description": "The position of the issue in parent's sub-issue list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "The date at which the issue is due.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trashed", + "description": "Whether the issue has been trashed.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaBreachesAt", + "description": "[Internal] The timestamp at which an issue will be considered in breach of SLA.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until an issue will be snoozed in Triage view.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedById", + "description": "The identifier of the user who snoozed the issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "companyIds", + "description": "The identifiers of the companies associated with this ticket.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AuthApiKeyCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the API key.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": "The API key value.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApiKeyCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the API key.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": "The API key value.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The attachment title.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "subtitle", + "description": "The attachment subtitle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "Attachment location which is also used as an unique identifier for the attachment. If another attachment is created with the same `url` value, existing record is updated instead.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue to associate the attachment with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadata", + "description": "Attachment metadata object with string and number values.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "groupBySource", + "description": "Indicates if attachments for the same source application should be grouped in the Linear UI.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentBody", + "description": "Create a linked comment with markdown body.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentBodyData", + "description": "[Internal] Create a linked comment with Prosemirror body. Please use `commentBody` instead.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttachmentUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": "The attachment title.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "subtitle", + "description": "The attachment subtitle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadata", + "description": "Attachment metadata object with string and number values.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "An icon url to display with the attachment. Should be of jpg or png format. Maximum of 1MB in size. Dimensions should be 20x20px for optimal display quality.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OnboardingCustomerSurvey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "companyRole", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "companySize", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateOrganizationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "urlKey", + "description": "The URL key of the organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "domainAccess", + "description": "Whether the organization should allow email domain access.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The timezone of the organization, passed in by client.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "utm", + "description": "JSON serialized UTM parameters associated with the creation of the workspace.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JoinOrganizationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "organizationId", + "description": "The identifier of the organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "inviteLink", + "description": "An optional invite link for an organization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailUserAccountAuthChallengeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": "The email for which to generate the magic login code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isDesktop", + "description": "Whether the login was requested from the desktop app.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "clientAuthCode", + "description": "Auth code for the client initiating the sequence.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "signupCode", + "description": "Signup code.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inviteLink", + "description": "The organization invite link to associate with this authentication.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "loginCodeOnly", + "description": "Whether to only return the login code. This is used by mobile apps to skip showing the login link.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenUserAccountAuthInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": "The email which to login via the magic login code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": "The magic login code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The timezone of the user's browser.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamIdsToJoin", + "description": "The identifiers of the teams to auto-join.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "inviteLink", + "description": "An optional invite link for an organization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GoogleUserAccountAuthInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "code", + "description": "Code returned from Google's OAuth flow.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The URI to redirect the user to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The timezone of the user's browser.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamIdsToJoin", + "description": "The identifiers of the teams to auto-join.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "signupCode", + "description": "Signup code.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inviteLink", + "description": "An optional invite link for an organization used to populate available organizations.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "The comment content in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bodyData", + "description": "[Internal] The comment content as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue to associate the comment with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateId", + "description": "The project update to associate the comment with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentContentId", + "description": "The document content to associate the comment with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The parent comment under which to nest a current comment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createAsUser", + "description": "Create comment as a user with the provided name. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "The date when the comment was created (e.g. if importing from another system). Must be a date in the past. If none is provided, the backend will generate the time as now.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "doNotSubscribeToIssue", + "description": "Flag to prevent auto subscription to the issue the comment is created on.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createOnSyncedSlackThread", + "description": "Flag to indicate this comment should be created on the issue's synced Slack comment thread. If no synced Slack comment thread exists, the mutation will fail.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quotedText", + "description": "The text that this comment references. Only defined for inline comments.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "body", + "description": "The comment content.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bodyData", + "description": "The comment content as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resolvingUserId", + "description": "[INTERNAL] The user who resolved this thread.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resolvingCommentId", + "description": "[INTERNAL] The child comment that resolves this thread.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quotedText", + "description": "The text that this comment references. Only defined for inline comments.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContactCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "The type of support contact.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "message", + "description": "The message the user sent.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "operatingSystem", + "description": "User's operating system.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "browser", + "description": "User's browser information.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "device", + "description": "User's device information.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "clientVersion", + "description": "User's Linear client information.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "disappointmentRating", + "description": "How disappointed the user would be if they could no longer use Linear.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ContactSalesCreateInput", + "description": "[INTERNAL] Input for sending a message to the Linear Sales team.", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "Name of the person requesting information.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "Work email of the person requesting information.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "companySize", + "description": "Size of the company.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "The message the user sent.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PrioritySort", + "description": "Issue priority sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "noPriorityFirst", + "description": "Whether to consider no priority as the highest or lowest priority", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaginationNulls", + "description": "How to treat NULL values, whether they should appear first or last", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "first", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaginationSortOrder", + "description": "Whether to sort in ascending or descending order", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Ascending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Descending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EstimateSort", + "description": "Issue estimate sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TitleSort", + "description": "Issue title sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LabelSort", + "description": "Issue sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SlaStatusSort", + "description": "Issue SLA status sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreatedAtSort", + "description": "Issue creation date sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CycleSort", + "description": "Issue cycle sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "currentCycleFirst", + "description": "When set to true, cycles wil be ordered with a custom order. Current cycle comes first, followed by upcoming cycles in ASC order, followed by previous cycles in DESC order.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdatedAtSort", + "description": "Issue update date sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MilestoneSort", + "description": "Issue project milestone options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CompletedAtSort", + "description": "Issue completion date sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AssigneeSort", + "description": "Issue assignee sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DueDateSort", + "description": "Issue due date sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectSort", + "description": "Issue project sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamSort", + "description": "Issue team sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateSort", + "description": "Issue workflow state sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ManualSort", + "description": "Issue manual sorting options.", + "fields": null, + "inputFields": [ + { + "name": "nulls", + "description": "Whether nulls should be sorted first or last", + "type": { + "kind": "ENUM", + "name": "PaginationNulls", + "ofType": null + }, + "defaultValue": "last" + }, + { + "name": "order", + "description": "The order for the individual sort", + "type": { + "kind": "ENUM", + "name": "PaginationSortOrder", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueSortInput", + "description": "Issue filtering options.", + "fields": null, + "inputFields": [ + { + "name": "priority", + "description": "Sort by priority", + "type": { + "kind": "INPUT_OBJECT", + "name": "PrioritySort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "estimate", + "description": "Sort by estimate", + "type": { + "kind": "INPUT_OBJECT", + "name": "EstimateSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "Sort by issue title", + "type": { + "kind": "INPUT_OBJECT", + "name": "TitleSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "label", + "description": "Sort by label", + "type": { + "kind": "INPUT_OBJECT", + "name": "LabelSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaStatus", + "description": "Sort by SLA status", + "type": { + "kind": "INPUT_OBJECT", + "name": "SlaStatusSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "Sort by issue creation date", + "type": { + "kind": "INPUT_OBJECT", + "name": "CreatedAtSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "Sort by issue update date", + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdatedAtSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "Sort by issue completion date", + "type": { + "kind": "INPUT_OBJECT", + "name": "CompletedAtSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dueDate", + "description": "Sort by issue due date", + "type": { + "kind": "INPUT_OBJECT", + "name": "DueDateSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycle", + "description": "Sort by Cycle start date", + "type": { + "kind": "INPUT_OBJECT", + "name": "CycleSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "milestone", + "description": "Sort by Project Milestone target date", + "type": { + "kind": "INPUT_OBJECT", + "name": "MilestoneSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assignee", + "description": "Sort by assignee name", + "type": { + "kind": "INPUT_OBJECT", + "name": "AssigneeSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project", + "description": "Sort by Project name", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team", + "description": "Sort by Team name", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manual", + "description": "Sort by manual order", + "type": { + "kind": "INPUT_OBJECT", + "name": "ManualSort", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowState", + "description": "Sort by workflow state type", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateSort", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomViewCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the custom view.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the icon of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The id of the team associated with the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "[Internal] The id of the project associated with the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filters", + "description": "The filters applied to issues in the custom view.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filterData", + "description": "The filter applied to issues in the custom view.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectFilterData", + "description": "The project filter applied to issues in the custom view.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shared", + "description": "Whether the custom view is shared with everyone in the organization.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomViewUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the icon of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The id of the team associated with the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "[Internal] The id of the project associated with the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the custom view.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filters", + "description": "The filters applied to issues in the custom view.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filterData", + "description": "The filter applied to issues in the custom view.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectFilterData", + "description": "The project filter applied to issues in the custom view.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shared", + "description": "Whether the custom view is shared with everyone in the organization.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CycleCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The custom name of the cycle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the cycle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team to associate the cycle with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "startsAt", + "description": "The start date of the cycle.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "endsAt", + "description": "The end date of the cycle.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "The completion time of the cycle. If null, the cycle hasn't been completed.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CycleUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The custom name of the cycle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the cycle.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startsAt", + "description": "The start date of the cycle.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endsAt", + "description": "The end date of the cycle.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "The end date of the cycle.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CycleShiftAllInput", + "description": "[DEPRECATED] Input for shifting all cycles by a certain number of days. Mutation is now deprecated.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "[DEPRECATED] The cycle id at which to start the shift.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "daysToShift", + "description": "[DEPRECATED] The number of days to shift the cycles by.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiaryEntryCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": "The date for which the entry is created.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bodyData", + "description": "[Internal] The comment content as a Prosemirror diaryEntry.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiaryEntryUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "bodyData", + "description": "[Internal] The comment content as a Prosemirror diaryEntry.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": "The date for which the entry is created.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title of the document.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the icon.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contentData", + "description": "[Internal] The document content as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "content", + "description": "The document content as markdown.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Related project for the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "[Internal] Related initiative for the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DocumentUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": "The title of the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the icon.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contentData", + "description": "[Internal] The document content as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "content", + "description": "The document content as markdown.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Related project for the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "[Internal] Related initiative for the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the document.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hiddenAt", + "description": "The time at which the document was hidden.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailIntakeAddressCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team this email address will intake issues for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "templateId", + "description": "The identifier of the template this email address will intake issues for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailIntakeAddressUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "enabled", + "description": "Whether the email address is currently enabled. If set to false, the email address will be disabled and no longer accept incoming emails.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailUnsubscribeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "Email type to unsubscribed from.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": "The user's email validation token.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The identifier of the user.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmojiCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the custom emoji.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL for the emoji.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EntityExternalLinkCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "Related initiative link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the entities resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EntityExternalLinkUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": "The URL of the link.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the link.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the entities resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeToProjectCreateInput", + "description": "[INTERNAL] The properties of the initiativeToProject to create.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "The identifier of the initiative.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project within its organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeToProjectUpdateInput", + "description": "[INTERNAL] The properties of the initiativeToProject to update.", + "fields": null, + "inputFields": [ + { + "name": "sortOrder", + "description": "The sort order for the project within its organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeCreateInput", + "description": "[Internal] The properties of the initiative to create.", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the initiative.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "[Internal] The description of the initiative.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the initiative.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order of the initiative within the organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The initiative's color.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InitiativeUpdateInput", + "description": "[Internal] The properties of the initiative to update.", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the initiative.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "[Internal] The description of the initiative.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the initiative.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order of the initiative within the organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The initiative's color.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "The estimated completion date of the initiative.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FavoriteCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "folderName", + "description": "The name of the favorite folder.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The parent folder of the favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The identifier of the issue to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "facetId", + "description": "[INTERNAL] The identifier of the facet to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectTab", + "description": "The tab of the project to favorite.", + "type": { + "kind": "ENUM", + "name": "ProjectTab", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectTeamId", + "description": "The identifier of the project team to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predefinedViewType", + "description": "The type of the predefined view to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "predefinedViewTeamId", + "description": "The identifier of team for the predefined view to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleId", + "description": "The identifier of the cycle to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customViewId", + "description": "The identifier of the custom view to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentId", + "description": "The identifier of the document to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmapId", + "description": "The identifier of the roadmap to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "[INTERNAL] The identifier of the initiative to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelId", + "description": "The identifier of the label to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The identifier of the user to favorite.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the item in the favorites list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FavoriteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sortOrder", + "description": "The position of the item in the favorites list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The identifier (in UUID v4 format) of the folder to move the favorite under.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "folderName", + "description": "The name of the favorite folder.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitAutomationStateCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team associated with the automation state.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "stateId", + "description": "The associated workflow state. If null, will override default behaviour and take no action.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchPattern", + "description": "[DEPRECATED] The target branch pattern. If null, all branches are targeted.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetBranchId", + "description": "The associated target branch. If null, all branches are targeted.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "event", + "description": "The event that triggers the automation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "GitAutomationStates", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitAutomationStateUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "stateId", + "description": "The associated workflow state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchPattern", + "description": "[DEPRECATED] The target branch pattern. If null, all branches are targeted.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetBranchId", + "description": "The associated target branch. If null, all branches are targeted.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "event", + "description": "The event that triggers the automation.", + "type": { + "kind": "ENUM", + "name": "GitAutomationStates", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitAutomationTargetBranchCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team associated with the Git target branch automation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchPattern", + "description": "The target branch pattern.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isRegex", + "description": "Whether the branch pattern is a regular expression.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitAutomationTargetBranchUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "branchPattern", + "description": "The target branch pattern.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isRegex", + "description": "Whether the branch pattern is a regular expression.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntegrationRequestInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": "Email associated with the request.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Name of the requested integration.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "accessToken", + "description": "The Jira personal access token.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The Jira user's email address.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "hostname", + "description": "The Jira installation hostname.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "project", + "description": "The Jira project keys to scope the integration to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JiraUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The id of the integration to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "updateProjects", + "description": "Whether to refresh Jira Projects for the integration.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateMetadata", + "description": "Whether to refresh Jira metadata for the integration.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AirbyteConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "apiKey", + "description": "Linear export API key.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntegrationsSettingsCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slackIssueCreated", + "description": "Whether to send a Slack message when a new issue is created for the project or the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueNewComment", + "description": "Whether to send a Slack message when a comment is created on any of the project or team's issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatusChangedDone", + "description": "Whether to send a Slack message when any of the project or team's issues change to completed or cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatusChangedAll", + "description": "Whether to send a Slack message when any of the project or team's issues has a change in status.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreated", + "description": "Whether to send a Slack message when a project update is created.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreatedToTeam", + "description": "Whether to send a Slack message when a project update is created to team channels.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreatedToWorkspace", + "description": "Whether to send a Slack message when a project update is created to workspace channel.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueAddedToTriage", + "description": "Whether to send a Slack message when a new issue is added to triage.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueSlaHighRisk", + "description": "Whether to send a Slack message when an SLA is at high risk.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueSlaBreached", + "description": "Whether to receive notification when an SLA has breached on Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier of the team to create settings for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project to create settings for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntegrationsSettingsUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slackIssueCreated", + "description": "Whether to send a Slack message when a new issue is created for the project or the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueNewComment", + "description": "Whether to send a Slack message when a comment is created on any of the project or team's issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatusChangedDone", + "description": "Whether to send a Slack message when any of the project or team's issues change to completed or cancelled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatusChangedAll", + "description": "Whether to send a Slack message when any of the project or team's issues has a change in status.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreated", + "description": "Whether to send a Slack message when a project update is created.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreatedToTeam", + "description": "Whether to send a Slack message when a project update is created to team channels.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackProjectUpdateCreatedToWorkspace", + "description": "Whether to send a Slack message when a project update is created to workspace channel.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueAddedToTriage", + "description": "Whether to send a Slack message when a new issue is added to triage.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueSlaHighRisk", + "description": "Whether to send a Slack message when an SLA is at high risk.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueSlaBreached", + "description": "Whether to receive notification when an SLA has breached on Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IntegrationTemplateCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "integrationId", + "description": "The identifier of the integration.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "templateId", + "description": "The identifier of the template.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "foreignEntityId", + "description": "The foreign identifier in the other service.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueImportMappingInput", + "description": "Issue import mapping input.", + "fields": null, + "inputFields": [ + { + "name": "users", + "description": "The mapping configuration for users.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowStates", + "description": "The mapping configuration for workflow states.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "epics", + "description": "The mapping configuration for epics.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueImportUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "mapping", + "description": "The mapping configuration for the import.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the label.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The identifier of the parent label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team associated with the label. If not given, the label will be associated with the entire workspace.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueLabelUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parentId", + "description": "The identifier of the parent label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the label.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueRelationCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The type of relation of the issue to the related issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IssueRelationType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The identifier of the issue that is related to another issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "relatedIssueId", + "description": "The identifier of the related issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "IssueRelationType", + "description": "The type of the issue relation.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "blocks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "duplicate", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "related", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "IssueRelationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "The type of relation of the issue to the related issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The identifier of the issue that is related to another issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "relatedIssueId", + "description": "The identifier of the related issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "readAt", + "description": "The time when notification was marked as read.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateId", + "description": "The id of the project update related to the notification.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "description": "Describes the type and id of the entity to target for notifications.", + "fields": null, + "inputFields": [ + { + "name": "issueId", + "description": "The id of the issue related to the notification.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The id of the project related to the notification.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateId", + "description": "The id of the project update related to the notification.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "oauthClientApprovalId", + "description": "The id of the OAuth client approval related to the notification.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationSubscriptionCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customViewId", + "description": "The identifier of the custom view to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleId", + "description": "The identifier of the cycle to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelId", + "description": "The identifier of the label to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier of the team to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The identifier of the user to subscribe to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The types of notifications of the subscription.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Whether the subscription is active.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotificationSubscriptionUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "notificationSubscriptionTypes", + "description": "The types of notifications of the subscription.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Whether the subscription is active.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationDomainCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The domain name to add.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "verificationEmail", + "description": "The email address to which to send the verification code.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "authType", + "description": "The authentication type this domain is for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"general\"" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationDomainVerificationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "organizationDomainId", + "description": "The identifier in UUID v4 format of the domain being verified.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "verificationCode", + "description": "The verification code sent via email.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationInviteCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The email of the invitee.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "role", + "description": "What user role the invite should grant.", + "type": { + "kind": "ENUM", + "name": "UserRoleType", + "ofType": null + }, + "defaultValue": "user" + }, + { + "name": "message", + "description": "The message to send to the invitee.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamIds", + "description": "The teams that the user has been invited to.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "metadata", + "description": "[INTERNAL] Optional metadata about the invite.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationInviteUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "teamIds", + "description": "The teams that the user has been invited to.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AuthOrganizationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "urlKey", + "description": "The organization's unique URL key.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inviteHash", + "description": "The organization's unique invite hash.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the organization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logoUrl", + "description": "The logo of the organization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "urlKey", + "description": "The URL key of the organization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitBranchFormat", + "description": "How git branches are formatted. If null, default formatting will be used.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitLinkbackMessagesEnabled", + "description": "Whether the Git integration linkback messages should be sent for private repositories.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitPublicLinkbackMessagesEnabled", + "description": "Whether the Git integration linkback messages should be sent for public repositories.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmapEnabled", + "description": "Whether the organization is using roadmap.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdatesReminderFrequency", + "description": "The frequency at which project updates are sent.", + "type": { + "kind": "ENUM", + "name": "ProjectUpdateReminderFrequency", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateRemindersDay", + "description": "The day at which project updates are sent.", + "type": { + "kind": "ENUM", + "name": "Day", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateRemindersHour", + "description": "The hour at which project updates are sent.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fiscalYearStartMonth", + "description": "The month at which the fiscal year starts.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reducedPersonalInformation", + "description": "Whether the organization has opted for reduced customer support attachment information.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "oauthAppReview", + "description": "Whether the organization has opted for having to approve all OAuth applications for install.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "linearPreviewFlags", + "description": "Linear Preview feature flags.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowedAuthServices", + "description": "List of services that are allowed to be used for login.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "slaEnabled", + "description": "Internal. Whether SLAs have been enabled for the organization.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slaDayCount", + "description": "Which day count to use for SLA calculation.", + "type": { + "kind": "ENUM", + "name": "SLADayCountType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMembersToInvite", + "description": "Whether member users are allowed to send invites.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "themeSettings", + "description": "[ALPHA] Theme settings for the organization.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeleteOrganizationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deletionCode", + "description": "The deletion code to confirm operation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectLinkCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Related project for the link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the project resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectLinkUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": "The URL of the link.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "label", + "description": "The label for the link.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The order of the item in the project resources list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the project milestone.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the project milestone in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptionData", + "description": "[Internal] The description of the project milestone as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "The planned target date of the project milestone.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Related project for the project milestone.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project milestone within a project.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the project milestone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the project milestone in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptionData", + "description": "[Internal] The description of the project milestone as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "The planned target date of the project milestone.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project milestone within a project.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectRelationCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The type of relation of the project to the related project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project that is related to another project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectMilestoneId", + "description": "The identifier of the project milestone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "anchorType", + "description": "The type of the anchor for the project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "relatedProjectId", + "description": "The identifier of the related project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "relatedProjectMilestoneId", + "description": "The identifier of the related project milestone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "relatedAnchorType", + "description": "The type of the anchor for the related project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectRelationUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "The type of relation of the project to the related project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project that is related to another project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectMilestoneId", + "description": "The identifier of the project milestone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "anchorType", + "description": "The type of the anchor for the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "relatedProjectId", + "description": "The identifier of the related project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "relatedProjectMilestoneId", + "description": "The identifier of the related project milestone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "relatedAnchorType", + "description": "The type of the anchor for the related project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "[DEPRECATED] The state of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusId", + "description": "The ID of the project status.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description for the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamIds", + "description": "The identifiers of the teams this project is associated with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "convertedFromIssueId", + "description": "The ID of the issue from which that project is created.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "leadId", + "description": "The identifier of the project lead.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "memberIds", + "description": "The identifiers of the members of this project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "startDate", + "description": "The planned start date of the project.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startDateResolution", + "description": "[INTERNAL] The resolution of the project's start date.", + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "The planned target date of the project.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDateResolution", + "description": "[INTERNAL] The resolution of the project's estimated completion date.", + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project within shared views.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "[DEPRECATED] The state of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusId", + "description": "The ID of the project status.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description for the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "convertedFromIssueId", + "description": "The ID of the issue from which that project is created.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastAppliedTemplateId", + "description": "The ID of the last template applied to the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamIds", + "description": "The identifiers of the teams this project is associated with.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "projectUpdateRemindersPausedUntilAt", + "description": "The time until which project update reminders are paused.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "leadId", + "description": "The identifier of the project lead.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "memberIds", + "description": "The identifiers of the members of this project.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "startDate", + "description": "The planned start date of the project.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startDateResolution", + "description": "[INTERNAL] The resolution of the project's start date.", + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDate", + "description": "The planned target date of the project.", + "type": { + "kind": "SCALAR", + "name": "TimelessDate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetDateResolution", + "description": "[INTERNAL] The resolution of the project's estimated completion date.", + "type": { + "kind": "ENUM", + "name": "DateResolutionType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completedAt", + "description": "The date when the project was completed.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "canceledAt", + "description": "The date when the project was canceled.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackNewIssue", + "description": "Whether to send new issue notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueComments", + "description": "Whether to send new issue comment notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatuses", + "description": "Whether to send issue status update notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project in shared views.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectDetailSuggestionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description for the project.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "documentContent", + "description": "The content of the project as markdown.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInteractionCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateId", + "description": "The id of the project update that has been interacted with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "readAt", + "description": "The time at which the user read the project update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "The content of the project update in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bodyData", + "description": "[Internal] The content of the project update as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The project to associate the project update with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "health", + "description": "The health of the project at the time of the update.", + "type": { + "kind": "ENUM", + "name": "ProjectUpdateHealthType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isDiffHidden", + "description": "Whether the diff between the current update and the previous one should be hidden.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "body", + "description": "The content of the project update in markdown format.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bodyData", + "description": "The content of the project update as a Prosemirror document.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "health", + "description": "The health of the project at the time of the update.", + "type": { + "kind": "ENUM", + "name": "ProjectUpdateHealthType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isDiffHidden", + "description": "Whether the diff between the current update and the previous one should be hidden.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PushSubscriptionCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The user identifier of the subscription.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "The data of the subscription in stringified JSON format.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Whether this is a subscription payload for Google Cloud Messaging or Apple Push Notification service.", + "type": { + "kind": "ENUM", + "name": "PushSubscriptionType", + "ofType": null + }, + "defaultValue": "web" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PushSubscriptionType", + "description": "The different push subscription types.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "web", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apple", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "appleDevelopment", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firebase", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReactionCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emoji", + "description": "The emoji the user reacted with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentId", + "description": "The comment to associate the reaction with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectUpdateId", + "description": "The project update to associate the reaction with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue to associate the reaction with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the roadmap.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the roadmap.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the roadmap.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order of the roadmap within the organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The roadmap's color.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the roadmap.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the roadmap.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": "The owner of the roadmap.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order of the roadmap within the organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The roadmap's color.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapToProjectCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "roadmapId", + "description": "The identifier of the roadmap.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The sort order for the project within its organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RoadmapToProjectUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sortOrder", + "description": "The sort order for the project within its organization.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamMembershipCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The identifier of the user associated with the membership.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier of the team associated with the membership.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "Internal. Whether the user is the owner of the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the item in the users list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamMembershipUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": "Internal. Whether the user is the owner of the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the item in the users list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the team.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "The key of the team. If not given, the key will be generated based on the name of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "organizationId", + "description": "The organization associated with the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cyclesEnabled", + "description": "Whether the team uses cycles.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleStartDay", + "description": "The day of the week that a new cycle starts.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleDuration", + "description": "The duration of each cycle in weeks.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleCooldownTime", + "description": "The cooldown time after each cycle in weeks.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleIssueAutoAssignStarted", + "description": "Auto assign started issues to current active cycle setting.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleIssueAutoAssignCompleted", + "description": "Auto assign completed issues to current active cycle setting.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleLockToActive", + "description": "Only allow issues issues with cycles in Active Issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "upcomingCycleCount", + "description": "How many upcoming cycles to create.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "triageEnabled", + "description": "Whether triage mode is enabled for the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "requirePriorityToLeaveTriage", + "description": "Whether an issue needs to have a priority set before leaving triage.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The timezone of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueOrderingNoPriorityFirst", + "description": "Whether issues without priority should be sorted first.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationType", + "description": "The issue estimation type to use. Must be one of \"notUsed\", \"exponential\", \"fibonacci\", \"linear\", \"tShirt\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationAllowZero", + "description": "Whether to allow zeros in issues estimates.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setIssueSortOrderOnStateChange", + "description": "Whether to move issues to bottom of the column when changing state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationExtended", + "description": "Whether to add additional points to the estimate scale.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultIssueEstimate", + "description": "What to use as an default estimate for unestimated issues.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "groupIssueHistory", + "description": "Whether to group recent issue history entries.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultTemplateForMembersId", + "description": "The identifier of the default template for members of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultTemplateForNonMembersId", + "description": "The identifier of the default template for non-members of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultProjectTemplateId", + "description": "The identifier of the default project template of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "private", + "description": "Internal. Whether the team is private or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoClosePeriod", + "description": "Period after which issues are automatically closed, in months.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoCloseStateId", + "description": "The canceled workflow state which auto closed issues will be set to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoArchivePeriod", + "description": "Period after which closed and completed issues are automatically archived, in months. 0 means disabled.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "markedAsDuplicateWorkflowStateId", + "description": "The workflow state into which issues are moved when they are marked as a duplicate of another issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TeamUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "The key of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": "The icon of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cyclesEnabled", + "description": "Whether the team uses cycles.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleStartDay", + "description": "The day of the week that a new cycle starts.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleDuration", + "description": "The duration of each cycle in weeks.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleCooldownTime", + "description": "The cooldown time after each cycle in weeks.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleIssueAutoAssignStarted", + "description": "Auto assign started issues to current active cycle setting.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleIssueAutoAssignCompleted", + "description": "Auto assign completed issues to current active cycle setting.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleLockToActive", + "description": "Only allow issues with cycles in Active Issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleEnabledStartWeek", + "description": "[DEPRECATED] Whether the first cycle should start in the current or the next week.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleEnabledStartDate", + "description": "The date to begin cycles on.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "upcomingCycleCount", + "description": "How many upcoming cycles to create.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The timezone of the team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueOrderingNoPriorityFirst", + "description": "Whether issues without priority should be sorted first.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationType", + "description": "The issue estimation type to use. Must be one of \"notUsed\", \"exponential\", \"fibonacci\", \"linear\", \"tShirt\".", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationAllowZero", + "description": "Whether to allow zeros in issues estimates.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setIssueSortOrderOnStateChange", + "description": "Whether to move issues to bottom of the column when changing state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueEstimationExtended", + "description": "Whether to add additional points to the estimate scale.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultIssueEstimate", + "description": "What to use as an default estimate for unestimated issues.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "draftWorkflowStateId", + "description": "The workflow state into which issues are moved when a draft PR has been opened.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startWorkflowStateId", + "description": "The workflow state into which issues are moved when a PR has been opened.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reviewWorkflowStateId", + "description": "The workflow state into which issues are moved when a review has been requested for the PR.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeableWorkflowStateId", + "description": "The workflow state into which issues are moved when a PR is ready to be merged.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeWorkflowStateId", + "description": "The workflow state into which issues are moved when a PR has been merged.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackNewIssue", + "description": "Whether to send new issue notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueComments", + "description": "Whether to send new issue comment notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slackIssueStatuses", + "description": "Whether to send issue status update notifications to Slack.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "groupIssueHistory", + "description": "Whether to group recent issue history entries.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultTemplateForMembersId", + "description": "The identifier of the default template for members of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultTemplateForNonMembersId", + "description": "The identifier of the default template for non-members of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultProjectTemplateId", + "description": "The identifier of the default project template of this team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "private", + "description": "Whether the team is private or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "triageEnabled", + "description": "Whether triage mode is enabled for the team.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "requirePriorityToLeaveTriage", + "description": "Whether an issue needs to have a priority set before leaving triage.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultIssueStateId", + "description": "Default status for newly created issues.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoClosePeriod", + "description": "Period after which issues are automatically closed, in months.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoCloseStateId", + "description": "The canceled workflow state which auto closed issues will be set to.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "autoArchivePeriod", + "description": "Period after which closed and completed issues are automatically archived, in months.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "markedAsDuplicateWorkflowStateId", + "description": "The workflow state into which issues are moved when they are marked as a duplicate of another issue.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "joinByDefault", + "description": "Whether new users should join this team by default. Mutation restricted to workspace admins!", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "scimManaged", + "description": "Whether the team is managed by SCIM integration. Mutation restricted to workspace admins and only unsetting is allowed!", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TemplateCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The template type, e.g. 'issue'.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team associated with the template. If not given, the template will be shared across all teams.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The template name.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The template description.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "templateData", + "description": "The template data as JSON encoded attributes of the type of entity, such as an issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the template in the templates list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TemplateUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The template name.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The template description.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team associated with the template. If set to null, the template will be shared across all teams.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "templateData", + "description": "The template data as JSON encoded attributes of the type of entity, such as an issue.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": "The position of the template in the templates list.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the schedule.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "entries", + "description": "The schedule entries.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleEntryInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": "The unique identifier of the external schedule.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrl", + "description": "The URL to the external schedule.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the schedule.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "entries", + "description": "The schedule entries.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleEntryInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": "The unique identifier of the external schedule.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrl", + "description": "The URL to the external schedule.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier of the team associated with the triage responsibility.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "action", + "description": "The action to take when an issue is added to triage.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "manualSelection", + "description": "The manual selection of users responsible for triage.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityManualSelectionInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timeScheduleId", + "description": "The identifier of the time schedule used for scheduling triage responsibility", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "action", + "description": "The action to take when an issue is added to triage.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manualSelection", + "description": "The manual selection of users responsible for triage.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityManualSelectionInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timeScheduleId", + "description": "The identifier of the time schedule used for scheduling triage responsibility.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "The display name of the user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatarUrl", + "description": "The avatar image URL of the user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "active", + "description": "Whether the user account is active.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "disableReason", + "description": "Reason for deactivation.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "admin", + "description": "Whether the user account has admin privileges.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The user description or a short bio.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusEmoji", + "description": "The emoji part of the user status.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusLabel", + "description": "The label part of the user status.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusUntilAt", + "description": "When the user status should be cleared.", + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezone", + "description": "The local timezone of the user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserSettingsUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "settings", + "description": "The user's settings.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "unsubscribedFrom", + "description": "The types of emails the user has unsubscribed from.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "subscribedToChangelog", + "description": "Whether this user is subscribed to changelog email or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribedToDPA", + "description": "Whether this user is subscribed to DPA emails or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribedToInviteAccepted", + "description": "Whether this user is subscribed to invite accepted emails or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribedToPrivacyLegalUpdates", + "description": "Whether this user is subscribed to privacy and legal update emails or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribedToUnreadNotificationsReminder", + "description": "Whether this user is subscribed to email notifications reminder or not.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "notificationPreferences", + "description": "The user's notification preferences.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "usageWarningHistory", + "description": "[Internal] The user's usage warning history.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ViewPreferencesCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The type of view preferences (either user or organization level preferences).", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ViewPreferencesType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "viewType", + "description": "The view type of the view preferences are associated with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ViewType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "preferences", + "description": "View preferences object.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "insights", + "description": "The default parameters for the insight on that view.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The project these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "roadmapId", + "description": "The roadmap these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initiativeId", + "description": "[Internal] The initiative these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelId", + "description": "The label these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cycleId", + "description": "The cycle these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customViewId", + "description": "The custom view these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The user profile these view preferences are associated with.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ViewPreferencesType", + "description": "The type of view preferences (either user or organization level preferences).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "organization", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ViewType", + "description": "The client view this custom view is targeting.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "inbox", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "myIssues", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "myIssuesCreatedByMe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "myIssuesSubscribedTo", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "myIssuesActivity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userProfile", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userProfileCreatedByUser", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "board", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedCycle", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectDocuments", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triage", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeIssues", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "backlog", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allIssues", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViews", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customRoadmap", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmap", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmaps", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapAll", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapClosed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapBacklog", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiatives", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsAll", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsBacklog", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectsClosed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "splitSearch", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archive", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quickView", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueIdentifiers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "myViews", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ViewPreferencesUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "preferences", + "description": "View preferences.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "insights", + "description": "The default parameters for the insight on that view.", + "type": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "label", + "description": "Label for the webhook.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enabled", + "description": "Whether this webhook is enabled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "secret", + "description": "A secret token used to sign the webhook payload.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL that will be called on data changes.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceTypes", + "description": "List of resources the webhook should subscribe to.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The identifier or key of the team associated with the Webhook.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allPublicTeams", + "description": "Whether this webhook is enabled for all public teams.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "label", + "description": "Label for the webhook.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "secret", + "description": "A secret token used to sign the webhook payload.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enabled", + "description": "Whether this webhook is enabled.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL that will be called on data changes.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceTypes", + "description": "List of resources the webhook should subscribe to.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "The identifier in UUID v4 format. If none is provided, the backend will generate one.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The workflow type.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the state.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the state.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "The position of the state.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "The team associated with the state.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "The name of the state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "The color of the state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the state.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "The position of the state.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueNotification", + "description": "An issue related notification.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Notification type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserActor", + "description": "The external user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that received the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at when the user marked the notification as read. Null, if the the user hasn't read the notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailedAt", + "description": "The time at when an email reminder for this notification was sent to the user. Null, if no email\n reminder has been sent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsnoozedAt", + "description": "The time at which a notification was unsnoozed..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactionEmoji", + "description": "Name of the reaction emoji related to the notification.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "The issue related to the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": "The comment related to the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team related to the issue notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptions", + "description": "The subscriptions related to the notification.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotification", + "description": "A project related notification.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Notification type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserActor", + "description": "The external user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that received the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at when the user marked the notification as read. Null, if the the user hasn't read the notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailedAt", + "description": "The time at when an email reminder for this notification was sent to the user. Null, if no email\n reminder has been sent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsnoozedAt", + "description": "The time at which a notification was unsnoozed..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project related to the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "The project update related to the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OauthClientApprovalNotification", + "description": "An oauth client approval related notification.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Notification type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserActor", + "description": "The external user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that received the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at when the user marked the notification as read. Null, if the the user hasn't read the notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailedAt", + "description": "The time at when an email reminder for this notification was sent to the user. Null, if no email\n reminder has been sent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsnoozedAt", + "description": "The time at which a notification was unsnoozed..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oauthClientApproval", + "description": "The OAuth client approval request related to the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OauthClientApproval", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DocumentNotification", + "description": "A document related notification.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "Notification type.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actor", + "description": "The user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserActor", + "description": "The external user that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user that received the notification.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "readAt", + "description": "The time at when the user marked the notification as read. Null, if the the user hasn't read the notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailedAt", + "description": "The time at when an email reminder for this notification was sent to the user. Null, if no email\n reminder has been sent.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsnoozedAt", + "description": "The time at which a notification was unsnoozed..", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botActor", + "description": "The bot that caused the notification.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ActorBot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomViewNotificationSubscription", + "description": "A custom view notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The custom view subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CycleNotificationSubscription", + "description": "A cycle notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The cycle subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LabelNotificationSubscription", + "description": "A label notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The label subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectNotificationSubscription", + "description": "A project notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The project subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamNotificationSubscription", + "description": "A team notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserNotificationSubscription", + "description": "A user notification subscription.", + "fields": [ + { + "name": "id", + "description": "The unique identifier of the entity.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "The time at which the entity was created.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those\n for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't\n been updated after creation.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedAt", + "description": "The time at which the entity was archived. Null if the entity has not been archived.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriber", + "description": "The user that subscribed to receive notifications.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "The contextual custom view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "The contextual cycle view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": "The contextual label view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "The contextual project view associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "The team associated with the notification subscription.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "The user subscribed to.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contextViewType", + "description": "The type of view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "ContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userContextViewType", + "description": "The type of user view to which the notification subscription context is associated with.", + "args": [], + "type": { + "kind": "ENUM", + "name": "UserContextViewType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": "Whether the subscription is active or not.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionTypes", + "description": "The type of subscription.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Entity", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "apiKeys", + "description": "All API keys for the user.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKeyConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationInfo", + "description": "Get basic information for an application.", + "args": [ + { + "name": "clientId", + "description": "The client ID of the application.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Application", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationInfoByIds", + "description": "[INTERNAL] Get basic information for a list of applications.", + "args": [ + { + "name": "ids", + "description": "The IDs of the applications.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Application", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationInfoWithMembershipsByIds", + "description": "[INTERNAL] Get information for a list of applications with memberships", + "args": [ + { + "name": "clientIds", + "description": "The client IDs to look up.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkspaceAuthorizedApplication", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationWithAuthorization", + "description": "Get information for an application and whether a user has approved it for the given scopes.", + "args": [ + { + "name": "actor", + "description": "Actor mode used for the authorization.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"user\"" + }, + { + "name": "redirectUri", + "description": "Redirect URI for the application.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "scope", + "description": "Scopes being requested by the application.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "clientId", + "description": "The client ID of the application.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAuthorizedApplication", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authorizedApplications", + "description": "[INTERNAL] Get all authorized applications for a user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthorizedApplication", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workspaceAuthorizedApplications", + "description": "[INTERNAL] Get non-internal authorized applications (with limited fields) for a workspace", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkspaceAuthorizedApplication", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachments", + "description": "All issue attachments.\n\nTo get attachments for a given URL, use `attachmentsForURL` query.", + "args": [ + { + "name": "filter", + "description": "Filter returned attachments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AttachmentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachment", + "description": "One specific issue attachment.\n[Deprecated] 'url' can no longer be used as the 'id' parameter. Use 'attachmentsForUrl' instead", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Attachment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentsForURL", + "description": "Returns issue attachments for a given `url`.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The attachment URL.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentIssue", + "description": "Query an issue by its associated attachment, and its id.", + "args": [ + { + "name": "id", + "description": "`id` of the attachment for which you'll want to get the issue for. [Deprecated] `url` as the `id` parameter.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Will be removed in near future, please use `attachmentsForURL` to get attachments and their issues instead." + }, + { + "name": "attachmentSources", + "description": "[Internal] Get a list of all unique attachment sources in the workspace.", + "args": [ + { + "name": "teamId", + "description": "(optional) if provided will only return attachment sources for the given team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentSourcesPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auditEntryTypes", + "description": "List of audit entry types.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuditEntryType", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "auditEntries", + "description": "All audit log entries.", + "args": [ + { + "name": "filter", + "description": "Filter returned audit entries.", + "type": { + "kind": "INPUT_OBJECT", + "name": "AuditEntryFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuditEntryConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availableUsers", + "description": "Fetch users belonging to this user account.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthResolverResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authenticationSessions", + "description": "User's active sessions.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthenticationSessionResponse", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ssoUrlFromEmail", + "description": "Fetch SSO login URL for the email provided.", + "args": [ + { + "name": "isDesktop", + "description": "Whether the client is the desktop app.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": "Email to query the SSO login URL by.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SsoUrlFromEmailResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": "All comments.", + "args": [ + { + "name": "filter", + "description": "Filter returned comments.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": "A specific comment.", + "args": [ + { + "name": "id", + "description": "The identifier of the comment to retrieve.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "[Deprecated] The issue for which to find the comment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hash", + "description": "The hash of the comment to retrieve.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViews", + "description": "Custom views for the user.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customView", + "description": "One specific custom view.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViewDetailsSuggestion", + "description": "[INTERNAL] Suggests metadata for a view based on it's filters.", + "args": [ + { + "name": "modelName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewSuggestionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViewHasSubscribers", + "description": "Whether a custom view has other subscribers than the current user in the organization.", + "args": [ + { + "name": "id", + "description": "The identifier of the custom view.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewHasSubscribersPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycles", + "description": "All cycles.", + "args": [ + { + "name": "filter", + "description": "Filter returned users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "CycleFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CycleConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycle", + "description": "One specific cycle.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cycle", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diaryEntry", + "description": "One specific diary entry.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentContentHistory", + "description": "A collection of document content history entries.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentContentHistoryPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documents", + "description": "All documents in the workspace.", + "args": [ + { + "name": "filter", + "description": "Filter returned documents.", + "type": { + "kind": "INPUT_OBJECT", + "name": "DocumentFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "document", + "description": "One specific document.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Document", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emojis", + "description": "All custom emojis.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmojiConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emoji", + "description": "A specific emoji.", + "args": [ + { + "name": "id", + "description": "The identifier or the name of the emoji to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Emoji", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityExternalLink", + "description": "One specific entity link.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUsers", + "description": "All external users for the organization.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalUserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUser", + "description": "One specific external user.", + "args": [ + { + "name": "id", + "description": "The identifier of the external user to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProjects", + "description": "[INTERNAL] returns a list of initiative to project entities.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProject", + "description": "[INTERNAL] One specific initiativeToProject.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiatives", + "description": "[Internal] All initiatives in the workspace.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiative", + "description": "[Internal] One specific initiative.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Initiative", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorites", + "description": "The user's favorites.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FavoriteConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favorite", + "description": "One specific favorite.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Favorite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrations", + "description": "All integrations.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integration", + "description": "One specific integration.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Integration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationHasScopes", + "description": "Checks if the integration has all required scopes.", + "args": [ + { + "name": "scopes", + "description": "Required scopes.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "integrationId", + "description": "The integration ID.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationHasScopesPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdates", + "description": "All project updates.", + "args": [ + { + "name": "filter", + "description": "Filter returned project updates.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettings", + "description": "One specific set of settings.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationTemplates", + "description": "Template and integration connections.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationTemplate", + "description": "One specific integrationTemplate.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportFinishGithubOAuth", + "description": "Fetches the GitHub token, completing the OAuth flow.", + "args": [ + { + "name": "code", + "description": "OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GithubOAuthTokenPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCheckCSV", + "description": "Checks a CSV file validity against a specific import service.", + "args": [ + { + "name": "csvUrl", + "description": "CSV storage url.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "service", + "description": "The service the CSV containing data from.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportCheckPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCheckSync", + "description": "Checks whether it will be possible to setup sync for this project or repository at the end of import", + "args": [ + { + "name": "issueImportId", + "description": "The ID of the issue import for which to check sync eligibility", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportSyncCheckPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabels", + "description": "All issue labels.", + "args": [ + { + "name": "filter", + "description": "Filter returned issue labels.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabel", + "description": "One specific label.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelations", + "description": "All issue relationships.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelation", + "description": "One specific issue relation.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issues", + "description": "All issues.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": "[INTERNAL] Sort returned issues.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueSortInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "One specific issue.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueSearch", + "description": "[DEPRECATED] Search issues. This endpoint is deprecated and will be removed in the future – use `searchIssues` instead.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "query", + "description": "[Deprecated] Search string to look for.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueVcsBranchSearch", + "description": "Find issue based on the VCS branch name.", + "args": [ + { + "name": "branchName", + "description": "The VCS branch name to search for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueFigmaFileKeySearch", + "description": "Find issues that are related to a given Figma file key.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fileKey", + "description": "The Figma file key.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issuePriorityValues", + "description": "Issue priority values and corresponding labels.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePriorityValue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueFilterSuggestion", + "description": "Suggests filters for an issue view based on a text prompt.", + "args": [ + { + "name": "projectId", + "description": "The ID of the project if filtering a project view", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prompt", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueFilterSuggestionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notifications", + "description": "All notifications.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notification", + "description": "One specific notification.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptions", + "description": "The user's notification subscriptions.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationSubscriptionConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscription", + "description": "One specific notification subscription.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationSubscription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDomainClaimRequest", + "description": "[INTERNAL] Checks whether the domain can be claimed.", + "args": [ + { + "name": "id", + "description": "The ID of the organization domain to claim.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDomainClaimPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInvites", + "description": "All invites for the organization.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInviteConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInvite", + "description": "One specific organization invite.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInviteDetails", + "description": "One specific organization invite.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "OrganizationInviteDetailsPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "The user's organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationExists", + "description": "Does the organization exist.", + "args": [ + { + "name": "urlKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationExistsPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archivedTeams", + "description": "[Internal] All archived teams of the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationMeta", + "description": "[INTERNAL] Get organization metadata by urlKey or organization id.", + "args": [ + { + "name": "urlKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationMeta", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLinks", + "description": "All links for the project.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLink", + "description": "One specific project link.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestones", + "description": "All milestones for the project.", + "args": [ + { + "name": "filter", + "description": "Filter returned project milestones.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestoneConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestone", + "description": "One specific project milestone.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestone", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelations", + "description": "All project relationships.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelationConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelation", + "description": "One specific project relation.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": "All projects.", + "args": [ + { + "name": "filter", + "description": "Filter returned projects.", + "type": { + "kind": "INPUT_OBJECT", + "name": "ProjectFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": "One specific project.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectFilterSuggestion", + "description": "Suggests filters for a project view based on a text prompt.", + "args": [ + { + "name": "prompt", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectFilterSuggestionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectDetailsSuggestion", + "description": "[INTERNAL] Suggests icon, color for a project based on its info while composing.", + "args": [ + { + "name": "project", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectDetailSuggestionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectDetailSuggestionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateInteractions", + "description": "All interactions on project updates.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateInteraction", + "description": "A specific interaction on a project update.", + "args": [ + { + "name": "id", + "description": "The identifier of the project update interaction to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteraction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "A specific project update.", + "args": [ + { + "name": "id", + "description": "The identifier of the project update to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "summarizeProjectUpdates", + "description": "[Internal] AI summary of the latest project updates for the given projects", + "args": [ + { + "name": "ids", + "description": "The identifiers of the projects to summarize.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SummaryPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pushSubscriptionTest", + "description": "Sends a test push message.", + "args": [ + { + "name": "targetMobile", + "description": "Whether to send to mobile devices.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "sendStrategy", + "description": "The send strategy to use.", + "type": { + "kind": "ENUM", + "name": "SendStrategy", + "ofType": null + }, + "defaultValue": "push" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscriptionTestPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rateLimitStatus", + "description": "The status of the rate limiter.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RateLimitPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmaps", + "description": "All roadmaps in the workspace.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmap", + "description": "One specific roadmap.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Roadmap", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProjects", + "description": "Custom views for the user.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProjectConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProject", + "description": "One specific roadmapToProject.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProject", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchDocuments", + "description": "Search documents.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "term", + "description": "Search string to look for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "snippetSize", + "description": "Size of search snippet to return (default: 100)", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeComments", + "description": "Should associated comments be searched (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "UUID of a team to use as a boost.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentSearchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchProjects", + "description": "Search projects.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "term", + "description": "Search string to look for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "snippetSize", + "description": "Size of search snippet to return (default: 100)", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeComments", + "description": "Should associated comments be searched (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "UUID of a team to use as a boost.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSearchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchIssues", + "description": "Search issues.", + "args": [ + { + "name": "filter", + "description": "Filter returned issues.", + "type": { + "kind": "INPUT_OBJECT", + "name": "IssueFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "term", + "description": "Search string to look for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "snippetSize", + "description": "Size of search snippet to return (default: 100)", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeComments", + "description": "Should associated comments be searched (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "UUID of a team to use as a boost.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueSearchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMemberships", + "description": "All team memberships.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMembership", + "description": "One specific team membership.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembership", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": "All teams whose issues can be accessed by the user. This might be different from `administrableTeams`, which also includes teams whose settings can be changed by the user.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "administrableTeams", + "description": "All teams you the user can administrate. Administrable teams are teams whose settings the user can change, but to whose issues the user doesn't necessarily have access to.", + "args": [ + { + "name": "filter", + "description": "Filter returned teams.", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "One specific team.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templates", + "description": "All templates from all users.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "template", + "description": "A specific template.", + "args": [ + { + "name": "id", + "description": "The identifier of the template to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templatesForIntegration", + "description": "Returns all templates that are associated with the integration type.", + "args": [ + { + "name": "integrationType", + "description": "The type of integration for which to return associated templates.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Template", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeSchedules", + "description": "All time schedules.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeScheduleConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeSchedule", + "description": "A specific time schedule.", + "args": [ + { + "name": "id", + "description": "The identifier of the time schedule to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedule", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibilities", + "description": "All triage responsibilities.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibilityConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibility", + "description": "A specific triage responsibility.", + "args": [ + { + "name": "id", + "description": "The identifier of the triage responsibility to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibility", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": "All users for the organization.", + "args": [ + { + "name": "filter", + "description": "Filter returned users.", + "type": { + "kind": "INPUT_OBJECT", + "name": "UserFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDisabled", + "description": "Should query return disabled/suspended users (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "One specific user.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to retrieve. To retrieve the authenticated user, use `viewer` query.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewer", + "description": "The currently authenticated user.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSettings", + "description": "The user's settings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettings", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", + "description": "All webhooks.", + "args": [ + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhook", + "description": "A specific webhook.", + "args": [ + { + "name": "id", + "description": "The identifier of the webhook to retrieve.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowStates", + "description": "All issue workflow states.", + "args": [ + { + "name": "filter", + "description": "Filter returned workflow states.", + "type": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": "A cursor to be used with last for backward pagination.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": "A cursor to be used with first for forward pagination", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "The number of items to forward paginate (used with after). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": "The number of items to backward paginate (used with before). Defaults to 50.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeArchived", + "description": "Should archived resources be included (default: false)", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "By which field should the pagination order by. Available options are createdAt (default) and updatedAt.", + "type": { + "kind": "ENUM", + "name": "PaginationOrderBy", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStateConnection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowState", + "description": "One specific state.", + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "OrganizationInviteDetailsPayload", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OrganizationInviteFullDetailsPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OrganizationAcceptedOrExpiredInviteDetailsPayload", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "SendStrategy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "desktopThenPush", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktopAndPush", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktop", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "push", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "apiKeyCreate", + "description": "Creates a new API key.", + "args": [ + { + "name": "input", + "description": "The api key object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApiKeyCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApiKeyPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiKeyDelete", + "description": "Deletes an API key.", + "args": [ + { + "name": "id", + "description": "The identifier of the API key to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentCreate", + "description": "Creates a new attachment, or updates existing if the same `url` and `issueId` is used.", + "args": [ + { + "name": "input", + "description": "The attachment object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentUpdate", + "description": "Updates an existing issue attachment.", + "args": [ + { + "name": "input", + "description": "A partial attachment object to update the attachment with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttachmentUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the attachment to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkURL", + "description": "Link any url to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The url to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the url.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The id for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkGitLabMR", + "description": "Link an existing GitLab MR to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the GitLab merge request.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the GitLab merge request to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectPathWithNamespace", + "description": "The path name to the project including any (sub)groups. E.g. linear/main/client.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "number", + "description": "The GitLab merge request number to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkGitHubIssue", + "description": "Link a GitHub issue to a Linear issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The Linear issue for which to link the GitHub issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the GitHub issue to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkGitHubPR", + "description": "Link a GitHub pull request to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the GitHub pull request.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The URL of the GitHub pull request to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "The owner of the GitHub repository.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "The name of the GitHub repository.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "The GitHub pull request number to link.", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkZendesk", + "description": "Link an existing Zendesk ticket to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ticketId", + "description": "The Zendesk ticket ID to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the Zendesk ticket.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkDiscord", + "description": "Link an existing Discord message to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the Discord message.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The Discord channel ID for the message to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "messageId", + "description": "The Discord message ID for the message to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The Discord message URL for the message to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkSlack", + "description": "Link an existing Slack message to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channel", + "description": "[DEPRECATED] The Slack channel ID for the message to link.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": "[DEPRECATED] Unique identifier of either a thread's parent message or a message in the thread.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "latest", + "description": "[DEPRECATED] The latest timestamp for the Slack message.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue to which to link the Slack message.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The Slack message URL for the message to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "syncToCommentThread", + "description": "Whether to begin syncing the message's Slack thread with a comment thread on the issue.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkFront", + "description": "Link an existing Front conversation to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "conversationId", + "description": "The Front conversation ID to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the Front conversation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FrontAttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkIntercom", + "description": "Link an existing Intercom conversation to an issue.", + "args": [ + { + "name": "createAsUser", + "description": "Create attachment as a user with the provided name. This option is only available to OAuth applications creating attachments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayIconUrl", + "description": "Provide an external user avatar URL. Can only be used in conjunction with the `createAsUser` options. This option is only available to OAuth applications creating comments in `actor=application` mode.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "The title to use for the attachment.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "conversationId", + "description": "The Intercom conversation ID to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Optional attachment ID that may be provided through the API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issueId", + "description": "The issue for which to link the Intercom conversation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentLinkJiraIssue", + "description": "Link an existing Jira issue to an issue.", + "args": [ + { + "name": "issueId", + "description": "The issue for which to link the Jira issue.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jiraIssueId", + "description": "The Jira issue key or ID to link.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attachmentArchive", + "description": "[DEPRECATED] Archives an issue attachment.", + "args": [ + { + "name": "id", + "description": "The identifier of the attachment to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttachmentArchivePayload", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "This mutation is deprecated, please use `attachmentDelete` instead" + }, + { + "name": "attachmentDelete", + "description": "Deletes an issue attachment.", + "args": [ + { + "name": "id", + "description": "The identifier of the attachment to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailUserAccountAuthChallenge", + "description": "Finds or creates a new user account by email and sends an email with token.", + "args": [ + { + "name": "input", + "description": "The data used for email authentication.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EmailUserAccountAuthChallengeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailUserAccountAuthChallengeResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailTokenUserAccountAuth", + "description": "Authenticates a user account via email and authentication token.", + "args": [ + { + "name": "input", + "description": "The data used for token authentication.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenUserAccountAuthInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthResolverResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "samlTokenUserAccountAuth", + "description": "Authenticates a user account via email and authentication token for SAML.", + "args": [ + { + "name": "input", + "description": "The data used for token authentication.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenUserAccountAuthInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthResolverResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "googleUserAccountAuth", + "description": "Authenticate user account through Google OAuth. This is the 2nd step of OAuth flow.", + "args": [ + { + "name": "input", + "description": "The data used for Google authentication.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GoogleUserAccountAuthInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AuthResolverResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrganizationFromOnboarding", + "description": "Creates an organization from onboarding.", + "args": [ + { + "name": "survey", + "description": "Onboarding survey.", + "type": { + "kind": "INPUT_OBJECT", + "name": "OnboardingCustomerSurvey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "Organization details for the new organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateOrganizationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateOrJoinOrganizationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "joinOrganizationFromOnboarding", + "description": "Join an organization from onboarding.", + "args": [ + { + "name": "input", + "description": "Organization details for the organization to join.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JoinOrganizationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateOrJoinOrganizationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "leaveOrganization", + "description": "Leave an organization.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization to leave.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateOrJoinOrganizationResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logout", + "description": "Logout the client.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogoutResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoutSession", + "description": "Logout an individual session with its ID.", + "args": [ + { + "name": "sessionId", + "description": "ID of the session to logout.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogoutResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoutAllSessions", + "description": "Logout all of user's sessions including the active one.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogoutResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoutOtherSessions", + "description": "Logout all of user's sessions excluding the current one.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LogoutResponse", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentCreate", + "description": "Creates a new comment.", + "args": [ + { + "name": "input", + "description": "The comment object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentUpdate", + "description": "Updates a comment.", + "args": [ + { + "name": "input", + "description": "A partial comment object to update the comment with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CommentUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the comment to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentDelete", + "description": "Deletes a comment.", + "args": [ + { + "name": "id", + "description": "The identifier of the comment to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentResolve", + "description": "Resolves a comment.", + "args": [ + { + "name": "resolvingCommentId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the comment to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commentUnresolve", + "description": "Unresolves a comment.", + "args": [ + { + "name": "id", + "description": "The identifier of the comment to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactCreate", + "description": "Saves user message.", + "args": [ + { + "name": "input", + "description": "The contact entry to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ContactCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContactPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactSalesCreate", + "description": "[INTERNAL] Saves sales pricing inquiry to Front.", + "args": [ + { + "name": "input", + "description": "The contact entry to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ContactSalesCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ContactPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViewCreate", + "description": "Creates a new custom view.", + "args": [ + { + "name": "input", + "description": "The properties of the custom view to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomViewCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViewUpdate", + "description": "Updates a custom view.", + "args": [ + { + "name": "input", + "description": "The properties of the custom view to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomViewUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the custom view to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomViewPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customViewDelete", + "description": "Deletes a custom view.", + "args": [ + { + "name": "id", + "description": "The identifier of the custom view to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleCreate", + "description": "Creates a new cycle.", + "args": [ + { + "name": "input", + "description": "The cycle object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CycleCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CyclePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleUpdate", + "description": "Updates a cycle.", + "args": [ + { + "name": "input", + "description": "A partial cycle object to update the cycle with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CycleUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the cycle to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CyclePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleArchive", + "description": "Archives a cycle.", + "args": [ + { + "name": "id", + "description": "The identifier of the cycle to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CycleArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleShiftAll", + "description": "[DEPRECATED] Shifts all cycles starts by a certain number of weeks.", + "args": [ + { + "name": "input", + "description": "A partial cycle object to update the cycle with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CycleShiftAllInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CyclePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diaryEntryCreate", + "description": "Creates a new diary entry.", + "args": [ + { + "name": "input", + "description": "The diary entry to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiaryEntryCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntryPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diaryEntryUpdate", + "description": "Updates a diaryEntry.", + "args": [ + { + "name": "input", + "description": "A partial diary entry object to update the diary entry with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiaryEntryUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the diary entry to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiaryEntryPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "diaryEntryDelete", + "description": "Deletes a diaryEntry.", + "args": [ + { + "name": "id", + "description": "The identifier of the diaryEntry to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentCreate", + "description": "Creates a new document.", + "args": [ + { + "name": "input", + "description": "The document to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentUpdate", + "description": "Updates a document.", + "args": [ + { + "name": "input", + "description": "A partial document object to update the document with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DocumentUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the document to update. Also the identifier from the URL is accepted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentDelete", + "description": "Deletes a document.", + "args": [ + { + "name": "id", + "description": "The identifier of the document to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "documentReminder", + "description": "Adds a document reminder. Will cause a notification to be sent when the issue reminder time is reached.", + "args": [ + { + "name": "reminderAt", + "description": "The time when a reminder notification will be sent.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the document to add a reminder for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DocumentPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailIntakeAddressCreate", + "description": "Creates a new email intake address.", + "args": [ + { + "name": "input", + "description": "The email intake address object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EmailIntakeAddressCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailIntakeAddressPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailIntakeAddressRotate", + "description": "Rotates an existing email intake address.", + "args": [ + { + "name": "id", + "description": "The identifier of the email intake address.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailIntakeAddressPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailIntakeAddressUpdate", + "description": "Updates an existing email intake address.", + "args": [ + { + "name": "input", + "description": "The properties of the email intake address to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EmailIntakeAddressUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the email intake address.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailIntakeAddressPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailIntakeAddressDelete", + "description": "Deletes an email intake address object.", + "args": [ + { + "name": "id", + "description": "The identifier of the email intake address to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailUnsubscribe", + "description": "Unsubscribes the user from one type of email.", + "args": [ + { + "name": "input", + "description": "Unsubscription details.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EmailUnsubscribeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmailUnsubscribePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emojiCreate", + "description": "Creates a custom emoji.", + "args": [ + { + "name": "input", + "description": "The emoji object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EmojiCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EmojiPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emojiDelete", + "description": "Deletes an emoji.", + "args": [ + { + "name": "id", + "description": "The identifier of the emoji to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityExternalLinkCreate", + "description": "Creates a new entity link.", + "args": [ + { + "name": "input", + "description": "The entity link object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EntityExternalLinkCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLinkPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityExternalLinkUpdate", + "description": "Updates an entity link.", + "args": [ + { + "name": "input", + "description": "The entity link object to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EntityExternalLinkUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the entity link to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EntityExternalLinkPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entityExternalLinkDelete", + "description": "Deletes an entity link.", + "args": [ + { + "name": "id", + "description": "The identifier of the entity link to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProjectCreate", + "description": "[INTERNAL] Creates a new initiativeToProject join.", + "args": [ + { + "name": "input", + "description": "The properties of the initiativeToProject to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeToProjectCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProjectUpdate", + "description": "[INTERNAL] Updates a initiativeToProject.", + "args": [ + { + "name": "input", + "description": "The properties of the initiativeToProject to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeToProjectUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the initiativeToProject to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeToProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeToProjectDelete", + "description": "[INTERNAL] Deletes a initiativeToProject.", + "args": [ + { + "name": "id", + "description": "The identifier of the initiativeToProject to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeCreate", + "description": "[Internal] Creates a new initiative.", + "args": [ + { + "name": "input", + "description": "The properties of the initiative to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeUpdate", + "description": "[Internal] Updates a initiative.", + "args": [ + { + "name": "input", + "description": "The properties of the initiative to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InitiativeUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the initiative to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeArchive", + "description": "[Internal] Archives a initiative.", + "args": [ + { + "name": "id", + "description": "The identifier of the initiative to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeUnarchive", + "description": "[Internal] Unarchives a initiative.", + "args": [ + { + "name": "id", + "description": "The identifier of the initiative to unarchive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InitiativeArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initiativeDelete", + "description": "[Internal] Deletes a initiative.", + "args": [ + { + "name": "id", + "description": "The identifier of the initiative to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favoriteCreate", + "description": "Creates a new favorite (project, cycle etc).", + "args": [ + { + "name": "input", + "description": "The favorite object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FavoriteCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FavoritePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favoriteUpdate", + "description": "Updates a favorite.", + "args": [ + { + "name": "input", + "description": "A partial favorite object to update the favorite with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FavoriteUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the favorite to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FavoritePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "favoriteDelete", + "description": "Deletes a favorite reference.", + "args": [ + { + "name": "id", + "description": "The identifier of the favorite reference to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fileUpload", + "description": "XHR request payload to upload an images, video and other attachments directly to Linear's cloud storage.", + "args": [ + { + "name": "metaData", + "description": "Optional metadata.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "makePublic", + "description": "Should the file be made publicly accessible (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "size", + "description": "File size of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": "MIME type of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "filename", + "description": "Filename of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importFileUpload", + "description": "XHR request payload to upload a file for import, directly to Linear's cloud storage.", + "args": [ + { + "name": "metaData", + "description": "Optional metadata.", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "size", + "description": "File size of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": "MIME type of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "filename", + "description": "Filename of the uploaded file.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageUploadFromUrl", + "description": "Upload an image from an URL to Linear.", + "args": [ + { + "name": "url", + "description": "URL of the file to be uploaded to Linear.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageUploadFromUrlPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationStateCreate", + "description": "Creates a new automation state.", + "args": [ + { + "name": "input", + "description": "The automation state to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitAutomationStateCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationStatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationStateUpdate", + "description": "Updates an existing state.", + "args": [ + { + "name": "input", + "description": "The state to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitAutomationStateUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the state to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationStatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationStateDelete", + "description": "Archives an automation state.", + "args": [ + { + "name": "id", + "description": "The identifier of the automation state to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationTargetBranchCreate", + "description": "Creates a Git target branch automation.", + "args": [ + { + "name": "input", + "description": "The Git target branch automation to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitAutomationTargetBranchCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationTargetBranchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationTargetBranchUpdate", + "description": "Updates an existing Git target branch automation.", + "args": [ + { + "name": "input", + "description": "The updates.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitAutomationTargetBranchUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the Git target branch automation to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitAutomationTargetBranchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitAutomationTargetBranchDelete", + "description": "Archives a Git target branch automation.", + "args": [ + { + "name": "id", + "description": "The identifier of the Git target branch automation to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationRequest", + "description": "Requests a currently unavailable integration.", + "args": [ + { + "name": "input", + "description": "Integration request details.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntegrationRequestInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationRequestPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSettingsUpdate", + "description": "[INTERNAL] Updates the integration.", + "args": [ + { + "name": "input", + "description": "An integration settings object.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntegrationSettingsInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the integration to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGithubCommitCreate", + "description": "Generates a webhook for the GitHub commit integration.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubCommitIntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGithubConnect", + "description": "Connects the organization with the GitHub App.", + "args": [ + { + "name": "installationId", + "description": "The GitHub data to connect with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGitlabConnect", + "description": "Connects the organization with a GitLab Access Token.", + "args": [ + { + "name": "gitlabUrl", + "description": "The URL of the GitLab installation.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "accessToken", + "description": "The GitLab Access Token to connect with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "airbyteIntegrationConnect", + "description": "Creates an integration api key for Airbyte to connect with Linear.", + "args": [ + { + "name": "input", + "description": "Airbyte integration settings.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AirbyteConfigurationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGoogleCalendarPersonalConnect", + "description": "[Internal] Connects the Google Calendar to the user to this Linear account via OAuth2.", + "args": [ + { + "name": "code", + "description": "[Internal] The Google OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jiraIntegrationConnect", + "description": "[INTERNAL] Connects the organization with a Jira Personal Access Token.", + "args": [ + { + "name": "input", + "description": "Jira integration settings.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JiraConfigurationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationJiraUpdate", + "description": "[INTERNAL] Updates a Jira Integration.", + "args": [ + { + "name": "input", + "description": "Jira integration update input.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JiraUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationJiraPersonal", + "description": "Connect your Jira account to Linear.", + "args": [ + { + "name": "code", + "description": "The Jira OAuth code, when connecting using OAuth.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accessToken", + "description": "The Jira personal access token, when connecting using a PAT.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGitHubPersonal", + "description": "Connect your GitHub account to Linear.", + "args": [ + { + "name": "code", + "description": "The GitHub OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationIntercom", + "description": "Integrates the organization with Intercom.", + "args": [ + { + "name": "domainUrl", + "description": "The Intercom domain URL to use for the integration. Defaults to app.intercom.com if not provided.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The Intercom OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Intercom OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationIntercomDelete", + "description": "Disconnects the organization from Intercom.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationIntercomSettingsUpdate", + "description": "[DEPRECATED] Updates settings on the Intercom integration.", + "args": [ + { + "name": "input", + "description": "A partial Intercom integration settings object to update the integration settings with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntercomSettingsInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "This mutation is deprecated, please use `integrationSettingsUpdate` instead" + }, + { + "name": "integrationDiscord", + "description": "Integrates the organization with Discord.", + "args": [ + { + "name": "redirectUri", + "description": "The Discord OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Discord OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationOpsgenieConnect", + "description": "[INTERNAL] Integrates the organization with Opsgenie.", + "args": [ + { + "name": "apiKey", + "description": "The Opsgenie API key.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationOpsgenieRefreshScheduleMappings", + "description": "[INTERNAL] Refresh Opsgenie schedule mappings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationPagerDutyConnect", + "description": "[INTERNAL] Integrates the organization with PagerDuty.", + "args": [ + { + "name": "code", + "description": "The PagerDuty OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The PagerDuty OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationPagerDutyRefreshScheduleMappings", + "description": "[INTERNAL] Refresh PagerDuty schedule mappings.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationUpdateSlack", + "description": "Updates the organization's Slack integration.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlack", + "description": "Integrates the organization with Slack.", + "args": [ + { + "name": "shouldUseV2Auth", + "description": "[DEPRECATED] Whether or not v2 of Slack OAuth should be used. No longer used.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackAsks", + "description": "Integrates the organization with the Slack Asks app.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackPersonal", + "description": "Integrates your personal notifications with Slack.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationAsksConnectChannel", + "description": "Connect a Slack channel to Asks.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AsksChannelConnectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackPost", + "description": "Slack webhook integration.", + "args": [ + { + "name": "shouldUseV2Auth", + "description": "[DEPRECATED] Whether or not v2 of Slack OAuth should be used. No longer used.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "Integration's associated team.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackChannelConnectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackProjectPost", + "description": "Slack integration for project notifications.", + "args": [ + { + "name": "service", + "description": "The service to enable once connected, either 'notifications' or 'updates'.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "Integration's associated project.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackChannelConnectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackOrgProjectUpdatesPost", + "description": "Slack integration for organization level project update notifications.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SlackChannelConnectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSlackImportEmojis", + "description": "Imports custom emojis from your Slack workspace.", + "args": [ + { + "name": "redirectUri", + "description": "The Slack OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Slack OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationFigma", + "description": "Integrates the organization with Figma.", + "args": [ + { + "name": "redirectUri", + "description": "The Figma OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Figma OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationGoogleSheets", + "description": "Integrates the organization with Google Sheets.", + "args": [ + { + "name": "code", + "description": "The Google OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refreshGoogleSheetsData", + "description": "Manually update Google Sheets data.", + "args": [ + { + "name": "id", + "description": "The identifier of the Google Sheets integration to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationSentryConnect", + "description": "Integrates the organization with Sentry.", + "args": [ + { + "name": "organizationSlug", + "description": "The slug of the Sentry organization being connected.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Sentry grant code that's exchanged for OAuth tokens.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "installationId", + "description": "The Sentry installationId to connect with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationFront", + "description": "Integrates the organization with Front.", + "args": [ + { + "name": "redirectUri", + "description": "The Front OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Front OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationZendesk", + "description": "Integrates the organization with Zendesk.", + "args": [ + { + "name": "subdomain", + "description": "The Zendesk installation subdomain.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Zendesk OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scope", + "description": "The Zendesk OAuth scopes.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "redirectUri", + "description": "The Zendesk OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationLoom", + "description": "Enables Loom integration for the organization.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationPayload", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Not available." + }, + { + "name": "integrationDelete", + "description": "Deletes an integration.", + "args": [ + { + "name": "id", + "description": "The identifier of the integration to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationArchive", + "description": "Archives an integration.", + "args": [ + { + "name": "id", + "description": "The identifier of the integration to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettingsCreate", + "description": "Creates new settings for one or more integrations.", + "args": [ + { + "name": "input", + "description": "The settings to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntegrationsSettingsCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettingsPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationsSettingsUpdate", + "description": "Updates settings related to integrations for a project or a team.", + "args": [ + { + "name": "input", + "description": "A settings object to update the settings with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntegrationsSettingsUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the settings to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationsSettingsPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationTemplateCreate", + "description": "Creates a new integrationTemplate join.", + "args": [ + { + "name": "input", + "description": "The properties of the integrationTemplate to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IntegrationTemplateCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IntegrationTemplatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "integrationTemplateDelete", + "description": "Deletes a integrationTemplate.", + "args": [ + { + "name": "id", + "description": "The identifier of the integrationTemplate to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCreateGithub", + "description": "Kicks off a GitHub import job.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "ID of the team into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamName", + "description": "Name of new team. When teamId is not set.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "githubToken", + "description": "GitHub token to fetch information from the GitHub API.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "githubRepoId", + "description": "ID of the Github repository from which we will import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "githubRepoName", + "description": "GitHub repository name from which we will import data.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "githubRepoOwner", + "description": "GitHub owner (user or org) for the repository from which we will import data.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "githubShouldImportOrgProjects", + "description": "Whether or not we should import GitHub organization level projects.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "instantProcess", + "description": "Whether to instantly process the import with the default configuration mapping.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeClosedIssues", + "description": "Whether or not we should collect the data for closed issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "ID of issue import. If not provided it will be generated.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCreateJira", + "description": "Kicks off a Jira import job.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "ID of the team into which to import data. Empty to create new team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamName", + "description": "Name of new team. When teamId is not set.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jiraToken", + "description": "Jira personal access token to access Jira REST API.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jiraProject", + "description": "Jira project key from which we will import data.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jiraEmail", + "description": "Jira user account email.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jiraHostname", + "description": "Jira installation or cloud hostname.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "instantProcess", + "description": "Whether to instantly process the import with the default configuration mapping.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeClosedIssues", + "description": "Whether or not we should collect the data for closed issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "ID of issue import. If not provided it will be generated.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCreateCSVJira", + "description": "Kicks off a Jira import job from a CSV.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "ID of the team into which to import data. Empty to create new team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamName", + "description": "Name of new team. When teamId is not set.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "csvUrl", + "description": "URL for the CSV.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jiraHostname", + "description": "Jira installation or cloud hostname.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jiraToken", + "description": "Jira personal access token to access Jira REST API.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jiraEmail", + "description": "Jira user account email.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCreateClubhouse", + "description": "Kicks off a Shortcut (formerly Clubhouse) import job.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "ID of the team into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamName", + "description": "Name of new team. When teamId is not set.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "clubhouseToken", + "description": "Shortcut (formerly Clubhouse) token to fetch information from the Clubhouse API.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "clubhouseGroupName", + "description": "Shortcut (formerly Clubhouse) group name to choose which issues we should import.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "instantProcess", + "description": "Whether to instantly process the import with the default configuration mapping.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeClosedIssues", + "description": "Whether or not we should collect the data for closed issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "ID of issue import. If not provided it will be generated.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportCreateAsana", + "description": "Kicks off an Asana import job.", + "args": [ + { + "name": "organizationId", + "description": "ID of the organization into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": "ID of the team into which to import data.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamName", + "description": "Name of new team. When teamId is not set.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "asanaToken", + "description": "Asana token to fetch information from the Asana API.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "asanaTeamName", + "description": "Asana team name to choose which issues we should import.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "instantProcess", + "description": "Whether to instantly process the import with the default configuration mapping.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeClosedIssues", + "description": "Whether or not we should collect the data for closed issues.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "ID of issue import. If not provided it will be generated.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportDelete", + "description": "Deletes an import job.", + "args": [ + { + "name": "issueImportId", + "description": "ID of the issue import to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportDeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportProcess", + "description": "Kicks off import processing.", + "args": [ + { + "name": "mapping", + "description": "The mapping configuration to use for processing the import.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSONObject", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "issueImportId", + "description": "ID of the issue import which we're going to process.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueImportUpdate", + "description": "Updates the mapping for the issue import.", + "args": [ + { + "name": "input", + "description": "The properties of the issue import to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueImportUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue import.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueImportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabelCreate", + "description": "Creates a new label.", + "args": [ + { + "name": "replaceTeamLabels", + "description": "Whether to replace all team-specific labels with the same name with this newly created workspace label (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The issue label to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabelUpdate", + "description": "Updates an label.", + "args": [ + { + "name": "replaceTeamLabels", + "description": "Whether to replace all team-specific labels with the same name with this updated workspace label (default: false).", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "A partial label object to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueLabelUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the label to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueLabelPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabelDelete", + "description": "Deletes an issue label.", + "args": [ + { + "name": "id", + "description": "The identifier of the label to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelationCreate", + "description": "Creates a new issue relation.", + "args": [ + { + "name": "input", + "description": "The issue relation to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueRelationCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelationUpdate", + "description": "Updates an issue relation.", + "args": [ + { + "name": "input", + "description": "The properties of the issue relation to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueRelationUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue relation to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRelationDelete", + "description": "Deletes an issue relation.", + "args": [ + { + "name": "id", + "description": "The identifier of the issue relation to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueCreate", + "description": "Creates a new issue.", + "args": [ + { + "name": "input", + "description": "The issue object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueUpdate", + "description": "Updates an issue.", + "args": [ + { + "name": "input", + "description": "A partial issue object to update the issue with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueBatchUpdate", + "description": "Updates multiple issues at once.", + "args": [ + { + "name": "input", + "description": "A partial issue object to update the issues with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "IssueUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "The id's of the issues to update. Can't be more than 50 at a time.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "UUID", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueBatchPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueArchive", + "description": "Archives an issue.", + "args": [ + { + "name": "trash", + "description": "Whether to trash the issue.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueUnarchive", + "description": "Unarchives an issue.", + "args": [ + { + "name": "id", + "description": "The identifier of the issue to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueDelete", + "description": "Deletes (trashes) an issue.", + "args": [ + { + "name": "id", + "description": "The identifier of the issue to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueAddLabel", + "description": "Adds a label to an issue.", + "args": [ + { + "name": "labelId", + "description": "The identifier of the label to add.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to add the label to.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueRemoveLabel", + "description": "Removes a label from an issue.", + "args": [ + { + "name": "labelId", + "description": "The identifier of the label to remove.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to remove the label from.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueReminder", + "description": "Adds an issue reminder. Will cause a notification to be sent when the issue reminder time is reached.", + "args": [ + { + "name": "reminderAt", + "description": "The time when a reminder notification will be sent.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to add a reminder for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueSubscribe", + "description": "Subscribes a user to an issue.", + "args": [ + { + "name": "userId", + "description": "The identifier of the user to subscribe, default is the current user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to subscribe to.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueUnsubscribe", + "description": "Unsubscribes a user from an issue.", + "args": [ + { + "name": "userId", + "description": "The identifier of the user to unsubscribe, default is the current user.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to unsubscribe from.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueDescriptionUpdateFromFront", + "description": "[INTERNAL] Updates an issue description from the Front app to handle Front attachments correctly.", + "args": [ + { + "name": "description", + "description": "Description to update the issue with. ", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the issue to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssuePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationUpdate", + "description": "Updates a notification.", + "args": [ + { + "name": "input", + "description": "A partial notification object to update the notification with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the notification to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationMarkReadAll", + "description": "Marks all past notifications for the associated entity as read.", + "args": [ + { + "name": "readAt", + "description": "The time when notification was marked as read.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The type and id of the entity to archive notifications for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationMarkUnreadAll", + "description": "Marks all past notifications for the associated entity as unread.", + "args": [ + { + "name": "input", + "description": "The type and id of the entity to archive notifications for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSnoozeAll", + "description": "Snoozes a notification and all past notifications for the associated entity.", + "args": [ + { + "name": "snoozedUntilAt", + "description": "The time until a notification will be snoozed. After that it will appear in the inbox again.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The type and id of the entity to archive notifications for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationUnsnoozeAll", + "description": "Unsnoozes a notification and all past notifications for the associated entity.", + "args": [ + { + "name": "unsnoozedAt", + "description": "The time when the notification was unsnoozed.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The type and id of the entity to archive notifications for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationArchive", + "description": "Archives a notification.", + "args": [ + { + "name": "id", + "description": "The id of the notification to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationArchiveAll", + "description": "Archives all of the user's past notifications for the associated entity.", + "args": [ + { + "name": "input", + "description": "The type and id of the entity to archive notifications for.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationEntityInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationBatchActionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationUnarchive", + "description": "Unarchives a notification.", + "args": [ + { + "name": "id", + "description": "The id of the notification to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionCreate", + "description": "Creates a new notification subscription for a cycle, custom view, label, project or team.", + "args": [ + { + "name": "input", + "description": "The subscription object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationSubscriptionCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationSubscriptionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionUpdate", + "description": "Updates a notification subscription.", + "args": [ + { + "name": "input", + "description": "A partial notification subscription object to update the notification subscription with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotificationSubscriptionUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the notification subscription to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationSubscriptionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "notificationSubscriptionDelete", + "description": "Deletes a notification subscription reference.", + "args": [ + { + "name": "id", + "description": "The identifier of the notification subscription reference to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Update `notificationSubscription.active` to `false` instead." + }, + { + "name": "organizationDomainClaim", + "description": "[INTERNAL] Verifies a domain claim.", + "args": [ + { + "name": "id", + "description": "The ID of the organization domain to claim.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDomainSimplePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDomainVerify", + "description": "[INTERNAL] Verifies a domain to be added to an organization.", + "args": [ + { + "name": "input", + "description": "The organization domain to verify.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationDomainVerificationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDomainPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDomainCreate", + "description": "[INTERNAL] Adds a domain to be allowed for an organization.", + "args": [ + { + "name": "triggerEmailVerification", + "description": "Whether to trigger an email verification flow during domain creation.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The organization domain entry to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationDomainCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDomainPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDomainDelete", + "description": "Deletes a domain.", + "args": [ + { + "name": "id", + "description": "The identifier of the domain to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInviteCreate", + "description": "Creates a new organization invite.", + "args": [ + { + "name": "input", + "description": "The organization invite object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationInviteCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInviteUpdate", + "description": "Updates an organization invite.", + "args": [ + { + "name": "input", + "description": "The updates to make to the organization invite object.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationInviteUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the organization invite to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationInvitePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resendOrganizationInvite", + "description": "Re-send an organization invite.", + "args": [ + { + "name": "id", + "description": "The identifier of the organization invite to be re-send.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationInviteDelete", + "description": "Deletes an organization invite.", + "args": [ + { + "name": "id", + "description": "The identifier of the organization invite to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationUpdate", + "description": "Updates the user's organization.", + "args": [ + { + "name": "input", + "description": "A partial organization object to update the organization with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDeleteChallenge", + "description": "Get an organization's delete confirmation token. Administrator privileges required.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationDelete", + "description": "Delete's an organization. Administrator privileges required.", + "args": [ + { + "name": "input", + "description": "Information required to delete an organization.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeleteOrganizationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationDeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationCancelDelete", + "description": "Cancels the deletion of an organization. Administrator privileges required.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationCancelDeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationStartPlusTrial", + "description": "Starts a plus trial for the organization. Administrator privileges required.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrganizationStartPlusTrialPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLinkCreate", + "description": "Creates a new project link.", + "args": [ + { + "name": "input", + "description": "The project link object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectLinkCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLinkUpdate", + "description": "Updates a project link.", + "args": [ + { + "name": "input", + "description": "The project link object to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectLinkUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project link to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectLinkPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectLinkDelete", + "description": "Deletes a project link.", + "args": [ + { + "name": "id", + "description": "The identifier of the project link to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestoneCreate", + "description": "Creates a new project milestone.", + "args": [ + { + "name": "input", + "description": "The project milestone to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestonePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestoneUpdate", + "description": "Updates a project milestone.", + "args": [ + { + "name": "input", + "description": "A partial object to update the project milestone with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectMilestoneUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project milestone to update. Also the identifier from the URL is accepted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectMilestonePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectMilestoneDelete", + "description": "Deletes a project milestone.", + "args": [ + { + "name": "id", + "description": "The identifier of the project milestone to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelationCreate", + "description": "[ALPHA] Creates a new project relation.", + "args": [ + { + "name": "input", + "description": "The project relation to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectRelationCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelationUpdate", + "description": "[ALPHA] Updates a project relation.", + "args": [ + { + "name": "input", + "description": "The properties of the project relation to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectRelationUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project relation to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectRelationPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectRelationDelete", + "description": "[ALPHA] Deletes a project relation.", + "args": [ + { + "name": "id", + "description": "The identifier of the project relation to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectCreate", + "description": "Creates a new project.", + "args": [ + { + "name": "connectSlackChannel", + "description": "Whether to connect a Slack channel to the project.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The issue object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdate", + "description": "Updates a project.", + "args": [ + { + "name": "input", + "description": "A partial project object to update the project with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project to update. Also the identifier from the URL is accepted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectDelete", + "description": "Deletes (trashes) a project.", + "args": [ + { + "name": "id", + "description": "The identifier of the project to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectArchive", + "description": "Archives a project.", + "args": [ + { + "name": "trash", + "description": "Whether to trash the project.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project to archive. Also the identifier from the URL is accepted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectArchivePayload", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Deprecated in favor of projectDelete." + }, + { + "name": "projectUnarchive", + "description": "Unarchives a project.", + "args": [ + { + "name": "id", + "description": "The identifier of the project to restore. Also the identifier from the URL is accepted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateInteractionCreate", + "description": "Creates a new interaction on a project update.", + "args": [ + { + "name": "input", + "description": "Data for the project update interaction to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateInteractionCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateInteractionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateCreate", + "description": "Creates a new project update.", + "args": [ + { + "name": "input", + "description": "Data for the project update to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateUpdate", + "description": "Updates a project update.", + "args": [ + { + "name": "input", + "description": "A data to update the project update with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectUpdateUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the project update to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateDelete", + "description": "Deletes a project update.", + "args": [ + { + "name": "id", + "description": "The identifier of the project update to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdateMarkAsRead", + "description": "Mark a project update as read.", + "args": [ + { + "name": "id", + "description": "The identifier of the project update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateWithInteractionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProjectUpdateReminder", + "description": "Create a notification to remind a user about a project update.", + "args": [ + { + "name": "userId", + "description": "The user identifier to whom the notification will be sent. By default, it is set to the project lead.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "The identifier of the project to remind about.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectUpdateReminderPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pushSubscriptionCreate", + "description": "Creates a push subscription.", + "args": [ + { + "name": "input", + "description": "The push subscription to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PushSubscriptionCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscriptionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pushSubscriptionDelete", + "description": "Deletes a push subscription.", + "args": [ + { + "name": "id", + "description": "The identifier of the push subscription to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PushSubscriptionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactionCreate", + "description": "Creates a new reaction.", + "args": [ + { + "name": "input", + "description": "The reaction object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReactionCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReactionPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactionDelete", + "description": "Deletes a reaction.", + "args": [ + { + "name": "id", + "description": "The identifier of the reaction to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCsvExportReport", + "description": "Create CSV export report for the organization.", + "args": [ + { + "name": "includePrivateTeamIds", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CreateCsvExportReportPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapCreate", + "description": "Creates a new roadmap.", + "args": [ + { + "name": "input", + "description": "The properties of the roadmap to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapUpdate", + "description": "Updates a roadmap.", + "args": [ + { + "name": "input", + "description": "The properties of the roadmap to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the roadmap to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapArchive", + "description": "Archives a roadmap.", + "args": [ + { + "name": "id", + "description": "The identifier of the roadmap to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapUnarchive", + "description": "Unarchives a roadmap.", + "args": [ + { + "name": "id", + "description": "The identifier of the roadmap to unarchive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapDelete", + "description": "Deletes a roadmap.", + "args": [ + { + "name": "id", + "description": "The identifier of the roadmap to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProjectCreate", + "description": "Creates a new roadmapToProject join.", + "args": [ + { + "name": "input", + "description": "The properties of the roadmapToProject to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapToProjectCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProjectUpdate", + "description": "Updates a roadmapToProject.", + "args": [ + { + "name": "input", + "description": "The properties of the roadmapToProject to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RoadmapToProjectUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the roadmapToProject to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RoadmapToProjectPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roadmapToProjectDelete", + "description": "Deletes a roadmapToProject.", + "args": [ + { + "name": "id", + "description": "The identifier of the roadmapToProject to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamKeyDelete", + "description": "Deletes a previously used team key.", + "args": [ + { + "name": "id", + "description": "The identifier of the team key to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMembershipCreate", + "description": "Creates a new team membership.", + "args": [ + { + "name": "input", + "description": "The team membership object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamMembershipCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMembershipUpdate", + "description": "Updates a team membership.", + "args": [ + { + "name": "input", + "description": "A partial team membership object to update the team membership with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamMembershipUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the team membership to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamMembershipPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamMembershipDelete", + "description": "Deletes a team membership.", + "args": [ + { + "name": "id", + "description": "The identifier of the team membership to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamCreate", + "description": "Creates a new team. The user who creates the team will automatically be added as a member to the newly created team.", + "args": [ + { + "name": "copySettingsFromTeamId", + "description": "The team id to copy settings from.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "input", + "description": "The team object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamUpdate", + "description": "Updates a team.", + "args": [ + { + "name": "input", + "description": "A partial team object to update the team with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the team to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamDelete", + "description": "Deletes a team.", + "args": [ + { + "name": "id", + "description": "The identifier of the team to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamUnarchive", + "description": "Unarchives a team and cancels deletion.", + "args": [ + { + "name": "id", + "description": "The identifier of the team to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamCyclesDelete", + "description": "Deletes team's cycles data", + "args": [ + { + "name": "id", + "description": "The identifier of the team, which cycles will be deleted.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templateCreate", + "description": "Creates a new template.", + "args": [ + { + "name": "input", + "description": "The template object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TemplateCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemplatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templateUpdate", + "description": "Updates an existing template.", + "args": [ + { + "name": "input", + "description": "The properties of the template to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TemplateUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the template.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TemplatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "templateDelete", + "description": "Deletes a template.", + "args": [ + { + "name": "id", + "description": "The identifier of the template to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeScheduleCreate", + "description": "Creates a new time schedule.", + "args": [ + { + "name": "input", + "description": "The properties of the time schedule to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedulePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeScheduleUpdate", + "description": "Updates a time schedule.", + "args": [ + { + "name": "input", + "description": "The properties of the time schedule to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the time schedule to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedulePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeScheduleUpsertExternal", + "description": "Upsert an external time schedule.", + "args": [ + { + "name": "input", + "description": "The properties of the time schedule to insert or update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TimeScheduleUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": "The unique identifier of the external schedule.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedulePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeScheduleDelete", + "description": "Deletes a time schedule.", + "args": [ + { + "name": "id", + "description": "The identifier of the time schedule to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeScheduleRefreshIntegrationSchedule", + "description": "Refresh the integration schedule information.", + "args": [ + { + "name": "id", + "description": "The identifier of the time schedule to refresh.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TimeSchedulePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibilityCreate", + "description": "Creates a new triage responsibility.", + "args": [ + { + "name": "input", + "description": "The properties of the triage responsibility to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibilityPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibilityUpdate", + "description": "Updates an existing triage responsibility.", + "args": [ + { + "name": "input", + "description": "The properties of the triage responsibility to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TriageResponsibilityUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the triage responsibility to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TriageResponsibilityPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageResponsibilityDelete", + "description": "Deletes a triage responsibility.", + "args": [ + { + "name": "id", + "description": "The identifier of the triage responsibility to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userUpdate", + "description": "Updates a user. Only available to organization admins and the user themselves.", + "args": [ + { + "name": "input", + "description": "A partial user object to update the user with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the user to update. Use `me` to reference currently authenticated user.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userDiscordConnect", + "description": "Connects the Discord user to this Linear account via OAuth2.", + "args": [ + { + "name": "redirectUri", + "description": "The Discord OAuth redirect URI.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "code", + "description": "The Discord OAuth code.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userExternalUserDisconnect", + "description": "Disconnects the external user from this Linear account.", + "args": [ + { + "name": "service", + "description": "The external service to disconnect.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userPromoteAdmin", + "description": "Makes user an admin. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to make an admin.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userDemoteAdmin", + "description": "Makes user a regular user. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to make a regular user.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userPromoteMember", + "description": "Makes user a regular user. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to make a regular user.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userDemoteMember", + "description": "Makes user a guest. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to make a guest.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSuspend", + "description": "Suspends a user. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to suspend.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userUnsuspend", + "description": "Un-suspends a user. Can only be called by an admin.", + "args": [ + { + "name": "id", + "description": "The identifier of the user to unsuspend.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserAdminPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSettingsUpdate", + "description": "Updates the user's settings.", + "args": [ + { + "name": "input", + "description": "A partial notification object to update the settings with.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserSettingsUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the userSettings to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettingsPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSettingsFlagIncrement", + "description": "[Deprecated] Updates a user's settings flag.", + "args": [ + { + "name": "flag", + "description": "Flag to increment.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettingsFlagPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userSettingsFlagsReset", + "description": "Resets user's setting flags.", + "args": [ + { + "name": "flags", + "description": "The flags to reset. If not provided all flags will be reset.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserFlagType", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettingsFlagsResetPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userFlagUpdate", + "description": "Updates a user's settings flag.", + "args": [ + { + "name": "operation", + "description": "Flag operation to perform.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserFlagUpdateOperation", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "flag", + "description": "Settings flag to increment.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "UserFlagType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserSettingsFlagPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewPreferencesCreate", + "description": "Creates a new ViewPreferences object.", + "args": [ + { + "name": "input", + "description": "The ViewPreferences object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ViewPreferencesCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ViewPreferencesPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewPreferencesUpdate", + "description": "Updates an existing ViewPreferences object.", + "args": [ + { + "name": "input", + "description": "The properties of the view preferences.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ViewPreferencesUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the ViewPreferences object.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ViewPreferencesPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewPreferencesDelete", + "description": "Deletes a ViewPreferences.", + "args": [ + { + "name": "id", + "description": "The identifier of the ViewPreferences to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookCreate", + "description": "Creates a new webhook.", + "args": [ + { + "name": "input", + "description": "The webhook object to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookUpdate", + "description": "Updates an existing Webhook.", + "args": [ + { + "name": "input", + "description": "The properties of the Webhook.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the Webhook.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WebhookPayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhookDelete", + "description": "Deletes a Webhook.", + "args": [ + { + "name": "id", + "description": "The identifier of the Webhook to delete.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeletePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowStateCreate", + "description": "Creates a new state, adding it to the workflow of a team.", + "args": [ + { + "name": "input", + "description": "The state to create.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateCreateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowStateUpdate", + "description": "Updates a state.", + "args": [ + { + "name": "input", + "description": "A partial state object to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WorkflowStateUpdateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "The identifier of the state to update.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStatePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowStateArchive", + "description": "Archives a state. Only states with issues that have all been archived can be archived.", + "args": [ + { + "name": "id", + "description": "The identifier of the state to archive.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "WorkflowStateArchivePayload", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "UUID", + "description": "A universally unique identifier as specified by RFC 4122.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserFlagType", + "description": "The types of flags that the user can have.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "updatedSlackThreadSyncIntegration", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedOnboarding", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktopInstalled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamsPageIntroductionDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "joinTeamIntroductionDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktopDownloadToastDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emptyBacklogDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emptyCustomViewsDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emptyActiveIssuesDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emptyMyIssuesDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triageWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cycleWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectBacklogWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectUpdatesWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analyticsWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insightsWelcomeDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "insightsHelpDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "figmaPromptDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueMovePromptCompleted", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "migrateThemePreference", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "listSelectionTip", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emptyParagraphSlashCommandTip", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "editorSlashCommandUsed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canPlaySnake", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canPlayTetris", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "importBannerDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tryInvitePeopleDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tryRoadmapsDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tryCyclesDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tryTriageDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tryGithubDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rewindBannerDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "helpIslandFeatureInsightsDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dueDateShortcutMigration", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slackCommentReactionTipShown", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issueLabelSuggestionUsed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "threadedCommentsNudgeIsSeen", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desktopTabsOnboardingDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "milestoneOnboardingIsSeenAndDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectBoardOnboardingIsSeenAndDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "figmaPluginBannerDismissed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "all", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "UserFlagUpdateOperation", + "description": "Operations that can be applied to UserFlagType.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "incr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clear", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lock", + "description": null, + "isDeprecated": false, + "deprecationReason": 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": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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, description and optional `specifiedByUrl`, 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": "specifiedByUrl", + "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": [ + { + "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": "__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`, `interfaces`, 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": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "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 + }, + { + "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": "__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": "isRepeatable", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "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": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "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 + } + ], + "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": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "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", + "ARGUMENT_DEFINITION", + "INPUT_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 using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + }, + { + "name": "specifiedBy", + "description": "Exposes a URL that specifies the behaviour of this scalar.", + "locations": [ + "SCALAR" + ], + "args": [ + { + "name": "url", + "description": "The URL that specifies the behaviour of this scalar.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ] + } + ] + } +}