From cdfb38de3b467a6e659b467779a46c054800516b Mon Sep 17 00:00:00 2001 From: David Dooling Date: Tue, 13 Nov 2018 11:30:18 -0600 Subject: [PATCH] Add review listeners that set goal result state Provide common review listeners that fail or require approval for different review comments. Fix automation-client peer dependency, although NPM semver still gets it wrong. Update automation-client dev dependency and fix compilation. Remove GraphQL code generation peer dependencies and old schema files. Update build package scripts. Update ignored files. --- .gitignore | 30 +- .npmignore | 40 +- graphql.schema.json | 1126 - .../code/review/goalReviewListener.ts | 77 + lib/api-helper/goal/storeGoals.ts | 3 +- lib/typings/.gitignore | 2 + package-lock.json | 4200 +- package.json | 16 +- schema.json | 111925 --------------- .../code/review/goalReviewListener.test.ts | 206 + 10 files changed, 3381 insertions(+), 114244 deletions(-) delete mode 100644 graphql.schema.json create mode 100644 lib/api-helper/code/review/goalReviewListener.ts create mode 100644 lib/typings/.gitignore delete mode 100644 schema.json create mode 100644 test/api-helper/code/review/goalReviewListener.test.ts diff --git a/.gitignore b/.gitignore index 2f5b0e46b..b3f34560b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,19 @@ -/build/ -/lib/typings/* +.idea/ +*.iml +.vscode/ +*~ +.#* +.npmrc node_modules/ -*.js -npm-debug.log *.d.ts +*.js *.js.map - -.idea/ -*.iml -.idea/workspace.xml -/release -graphql.config.json -git-info.json - *.log -*.log.gz - -.nyc_output/ -coverage/ -.vscode +*.txt +/.nyc_output/ +/build/ +/coverage/ /doc/ +/log/ +git-info.json /index.ts diff --git a/.npmignore b/.npmignore index 381e1650a..6b3c100fc 100644 --- a/.npmignore +++ b/.npmignore @@ -1,22 +1,28 @@ .idea/ -config/ -src/ -test/ -tmp/ -build/ -release/ +*.iml +.vscode/ +*~ +.#* +.dockerignore +.git* +.npmrc* +.travis.yml .atomist/ .nyc_output/ -.travis.yml -tsconfig.* -tslint.json -yarn.lock -.vscode -*.sh -*.iml -schema.json -scratch.txt -graphql.config.json -graphql.schema.json +/build/ +/doc/ +/config/ +/coverage/ +/log/ +/scripts/ +/src/ +/test/ +/CO*.md +/Dockerfile +/assets/kubectl/ +*.log +*.txt *.ts !*.d.ts +/graphql.*.json +/schema.json diff --git a/graphql.schema.json b/graphql.schema.json deleted file mode 100644 index 1b8aa58db..000000000 --- a/graphql.schema.json +++ /dev/null @@ -1,1126 +0,0 @@ -{ - "README" : "This is a bare-bones schema generated by JS GraphQL. Replace it with your own schema file or load it from a url by editing graphql.config.json", - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ - { - "name": "node", - "description": "Fetches an object given its ID", - "args": [ - { - "name": "id", - "description": "The ID of an object", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "An object with an ID", - "fields": [ - { - "name": "id", - "description": "The id of the object.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - ] - }, - { - "kind": "SCALAR", - "name": "String", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PageInfo", - "description": "Information about pagination in a connection.", - "fields": [ - { - "name": "hasNextPage", - "description": "When paginating forwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPreviousPage", - "description": "When paginating backwards, are there more items?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startCursor", - "description": "When paginating backwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endCursor", - "description": "When paginating forwards, the cursor to continue.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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": "Mutation", - "description": null, - "fields": [ - { - "name": "id", - "description": "The id of the object.", - "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": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given __Type is", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL’s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "onOperation", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - }, - { - "name": "onFragment", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - }, - { - "name": "onField", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formattedin [Markdown](https://daringfireball.net/projects/markdown/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"" - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/lib/api-helper/code/review/goalReviewListener.ts b/lib/api-helper/code/review/goalReviewListener.ts new file mode 100644 index 000000000..ef560470b --- /dev/null +++ b/lib/api-helper/code/review/goalReviewListener.ts @@ -0,0 +1,77 @@ +/* + * Copyright © 2018 Atomist, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { Severity } from "@atomist/automation-client"; +import { ReviewListener } from "../../../api/listener/ReviewListener"; +import { PushImpactResponse } from "../../../api/registration/PushImpactListenerRegistration"; +import { ReviewListenerRegistration } from "../../../api/registration/ReviewListenerRegistration"; + +/** + * Return review listener function that returns `pir` if there are any + * review comments with the provided severity. The method will short + * circuit once any comment with the provided severity is found. + * + * @param pir push impact response to return if there are comments + * with provided severities + * @param severity severity that should trigger a return of `pir`, + * "error" by default + * @return ReviewListener that returns `pir` if any comments have + * a severity of `severity`, proceed otherwise + */ +export function severityReviewListener(pir: PushImpactResponse, severity: Severity = "error"): ReviewListener { + return async rli => { + if (rli && rli.review && rli.review.comments && rli.review.comments.some(c => c.severity === severity)) { + return pir; + } + return PushImpactResponse.proceed; + }; +} + +/** + * Listener that fails the code inspection if the review has any + * error comments. + */ +export const FailGoalIfErrorComments: ReviewListenerRegistration = { + name: "Fail goal if any code inspections result in comments with severity error", + listener: severityReviewListener(PushImpactResponse.failGoals), +}; + +/** + * Listener that requires approval on the code inspection if the + * review has any error comments. + */ +export const ApproveGoalIfErrorComments: ReviewListenerRegistration = { + name: "Require approval if any code inspections result in comments with severity error", + listener: severityReviewListener(PushImpactResponse.requireApprovalToProceed), +}; + +/** + * Listener that fails the code inspection if the review has any + * warn comments. + */ +export const FailGoalIfWarnComments: ReviewListenerRegistration = { + name: "Fail goal if any code inspections result in comments with severity warn", + listener: severityReviewListener(PushImpactResponse.failGoals, "warn"), +}; + +/** + * Listener that requires approval on the code inspection if the + * review has any warn comments. + */ +export const ApproveGoalIfWarnComments: ReviewListenerRegistration = { + name: "Require approval if any code inspections result in comments with severity warn", + listener: severityReviewListener(PushImpactResponse.requireApprovalToProceed, "warn"), +}; diff --git a/lib/api-helper/goal/storeGoals.ts b/lib/api-helper/goal/storeGoals.ts index 0b7430e56..43da5df66 100644 --- a/lib/api-helper/goal/storeGoals.ts +++ b/lib/api-helper/goal/storeGoals.ts @@ -45,6 +45,7 @@ import { OnPushToAnyBranch, PushFields, SdmGoalState, + SdmGoalWithPushFields, } from "../../typings/types"; export function environmentFromGoal(goal: Goal) { @@ -174,7 +175,7 @@ export function constructSdmGoal(ctx: HandlerContext, parameters: { } export function storeGoal(ctx: HandlerContext, sdmGoal: SdmGoalMessage, push: OnPushToAnyBranch.Push) { - (sdmGoal as OnAnyRequestedSdmGoal.SdmGoal).push = cleanPush(push); + (sdmGoal as SdmGoalWithPushFields.Fragment).push = cleanPush(push); return ctx.messageClient.send(sdmGoal, addressEvent(GoalRootType)) .then(() => sdmGoal); } diff --git a/lib/typings/.gitignore b/lib/typings/.gitignore new file mode 100644 index 000000000..ec0fa47f8 --- /dev/null +++ b/lib/typings/.gitignore @@ -0,0 +1,2 @@ +types.d.ts +types.ts diff --git a/package-lock.json b/package-lock.json index a3476b189..0ac63c60c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,10 +4,54 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@apollographql/apollo-tools": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.2.6.tgz", + "integrity": "sha512-IKn35EzAHFQw4x8THux+fkVLkFNs8HDzIgKqcU5ZMfkDt3MOa1nfMbGVoVh2YdvpIjPtyUR3kvAAVQwmRPRjAQ==", + "dev": true, + "requires": { + "apollo-env": "0.2.3" + } + }, + "@apollographql/graphql-language-service-interface": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-language-service-interface/-/graphql-language-service-interface-2.0.2.tgz", + "integrity": "sha512-28wePK0hlIVjgmvMXMAUq8qRSjz9O+6lqFp4PzOTHtfJfSsjVe9EfjF98zTpHsTgT3HcOxmbqDZZy8jlXtOqEA==", + "dev": true, + "requires": { + "@apollographql/graphql-language-service-parser": "^2.0.0", + "@apollographql/graphql-language-service-types": "^2.0.0", + "@apollographql/graphql-language-service-utils": "^2.0.2" + } + }, + "@apollographql/graphql-language-service-parser": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-language-service-parser/-/graphql-language-service-parser-2.0.2.tgz", + "integrity": "sha512-rpTPrEJu1PMaRQxz5P8BZWsixNNhYloS0H0dwTxNBuE3qctbARvR7o8UCKLsmKgTbo+cz3T3a6IAsWlkHgMWGg==", + "dev": true, + "requires": { + "@apollographql/graphql-language-service-types": "^2.0.0" + } + }, + "@apollographql/graphql-language-service-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-language-service-types/-/graphql-language-service-types-2.0.2.tgz", + "integrity": "sha512-vE+Dz8pG+Xa1Z2nMl82LoO66lQ6JqBUjaXqLDvS3eMjvA3N4hf+YUDOWfPdNZ0zjhHhHXzUIIZCkax6bXfFbzQ==", + "dev": true + }, + "@apollographql/graphql-language-service-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@apollographql/graphql-language-service-utils/-/graphql-language-service-utils-2.0.2.tgz", + "integrity": "sha512-fDj5rWlTi/czvUS5t7V7I45Ai6bOO3Z7JARYj21Y2xxfbRGtJi6h8FvLX0N/EbzQgo/fiZc/HAhtfwn+OCjD7A==", + "dev": true, + "requires": { + "@apollographql/graphql-language-service-types": "^2.0.0" + } + }, "@atomist/automation-client": { - "version": "1.1.0-master.20181110132646", - "resolved": "https://registry.npmjs.org/@atomist/automation-client/-/automation-client-1.1.0-master.20181110132646.tgz", - "integrity": "sha512-64tdc3HCc8jvIHj88qIVzS+HSPZLOSiOxHL/Zf6QOOe0e5Ca1E8SJDZHFGLfviQpLS3kF4bRhjH9UfNzxxbBmQ==", + "version": "1.1.0-master.20181113184417", + "resolved": "https://registry.npmjs.org/@atomist/automation-client/-/automation-client-1.1.0-master.20181113184417.tgz", + "integrity": "sha512-X90l4CJMa4nbxdFwYP1SE81YUSHCs4mnEuZ24ns58zUMYUyaFYNX50Kbc/YT9cgCCuRCSEWU4mjCiF3OuB3PuQ==", "dev": true, "requires": { "@atomist/microgrammar": "1.0.1", @@ -42,6 +86,7 @@ "@types/utf8": "^2.1.6", "@types/uuid": "^3.4.3", "@types/ws": "^6.0.0", + "apollo": "^2.0.17", "apollo-cache-inmemory": "^1.3.9", "apollo-client": "^2.4.5", "apollo-link": "^1.2.2", @@ -67,9 +112,10 @@ "glob": "^7.1.3", "glob-promise": "^3.3.0", "glob-stream": "^6.1.0", - "graphql": "^0.13.2", - "graphql-code-generator": "^0.8.13", - "graphql-tag": "^2.8.0", + "graphql": "^14.0.2", + "graphql-code-generator": "^0.13.0", + "graphql-codegen-typescript-template": "^0.13.0", + "graphql-tag": "^2.10.0", "heavy": "^6.1.2", "helmet": "^3.15.0", "hot-shots": "^5.9.1", @@ -181,37 +227,386 @@ } }, "@babel/generator": { - "version": "7.0.0-beta.38", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.38.tgz", - "integrity": "sha512-aOHQPhsEyaB6p2n+AK981+onHoc+Ork9rcAQVSUJR33wUkGiWRpu6/C685knRyIZVsKeSdG5Q4xMiYeFUhuLzA==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.1.3.tgz", + "integrity": "sha512-ZoCZGcfIJFJuZBqxcY9OjC1KW2lWK64qrX1o4UYL3yshVhwKFYgzpWZ0vvtGMNJdTlvkw0W+HR1VnYN8q3QPFQ==", "dev": true, "requires": { - "@babel/types": "7.0.0-beta.38", + "@babel/types": "^7.1.3", "jsesc": "^2.5.1", - "lodash": "^4.2.0", + "lodash": "^4.17.10", "source-map": "^0.5.0", "trim-right": "^1.0.1" + } + }, + "@babel/parser": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.1.5.tgz", + "integrity": "sha512-WXKf5K5HT6X0kKiCOezJZFljsfxKV1FpU8Tf1A7ZpGvyd/Q4hlrJm2EwoH2onaUq3O4tLDp+4gk0hHPsMyxmOg==", + "dev": true + }, + "@babel/types": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.1.3.tgz", + "integrity": "sha512-RpPOVfK+yatXyn8n4PB1NW6k9qjinrXrRR8ugBN8fD6hCy5RXI6PSbVqpOJBO9oSaY7Nom4ohj35feb0UR9hSA==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.10", + "to-fast-properties": "^2.0.0" + } + }, + "@endemolshinegroup/cosmiconfig-typescript-loader": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.0.tgz", + "integrity": "sha512-qMbu0alhP2VmxYhO9rwJDAEDhBIa2lN+aRxRTBbvvk1sxuzAj3RZNuvtlKkM8CPBlE9PBAjCV3l5opXP1wPIZw==", + "dev": true, + "requires": { + "lodash.get": "^4", + "ts-node": "^7" + } + }, + "@graphql-modules/epoxy": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/@graphql-modules/epoxy/-/epoxy-0.1.9.tgz", + "integrity": "sha512-xWDhwe0ADZvAs6JhvpCHH0jf6YmjEmYshRI/VB6sHE54RGB9GOHqKAqWL/vcbzMrFI2cr40Qqoy7qqaEAh6Ifw==", + "dev": true, + "requires": { + "@graphql-modules/logger": "0.1.9", + "@types/deepmerge": "2.1.0", + "deepmerge": "2.2.1", + "graphql-tools": "4.0.2", + "tslib": "1.9.3" + } + }, + "@graphql-modules/logger": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/@graphql-modules/logger/-/logger-0.1.9.tgz", + "integrity": "sha512-nmxHyJkb2OUA3s7Za1McljkxxdLUb8c9h2mcEHWCsjVjE92XnzPJEIr2Ab7xzRWa+/q9w8nGAYph3eZDXwFgwA==", + "dev": true, + "requires": { + "moment": "2.22.2", + "tslib": "1.9.3", + "winston": "3.1.0" + } + }, + "@heroku-cli/color": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/@heroku-cli/color/-/color-1.1.14.tgz", + "integrity": "sha512-2JYy//YE2YINTe21hpdVMBNc7aYFkgDeY9JUz/BCjFZmYLn0UjGaCc4BpTcMGXNJwuqoUenw2WGOFGHsJqlIDw==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "strip-ansi": "^5.0.0", + "supports-color": "^5.5.0", + "tslib": "^1.9.3" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "ansi-regex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.0.0.tgz", + "integrity": "sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==", "dev": true + }, + "strip-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.0.0.tgz", + "integrity": "sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow==", + "dev": true, + "requires": { + "ansi-regex": "^4.0.0" + } } } }, - "@babel/types": { - "version": "7.0.0-beta.38", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.38.tgz", - "integrity": "sha512-SAtyEjmA7KiEoL2eAOAUM6M9arQJGWxJKK0S9x0WyPOosHS420RXoxPhn57u/8orRnK8Kxm0nHQQNTX203cP1Q==", + "@oclif/color": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/@oclif/color/-/color-0.0.0.tgz", + "integrity": "sha512-KKd3W7eNwfNF061tr663oUNdt8EMnfuyf5Xv55SGWA1a0rjhWqS/32P7OeB7CbXcJUBdfVrPyR//1afaW12AWw==", "dev": true, "requires": { - "esutils": "^2.0.2", - "lodash": "^4.2.0", - "to-fast-properties": "^2.0.0" + "ansi-styles": "^3.2.1", + "supports-color": "^5.4.0", + "tslib": "^1" } }, + "@oclif/command": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@oclif/command/-/command-1.5.5.tgz", + "integrity": "sha512-qx3hk59Gj9uc50Nv7o/lnv6bfol0sgFcCVCZiP1c4ieALtUqkT9XpGI6S06vxhkVVye0h4+XGRvMdeJh4+2A+w==", + "dev": true, + "requires": { + "@oclif/errors": "^1.2.2", + "@oclif/parser": "^3.7.0", + "debug": "^4.1.0", + "semver": "^5.6.0" + }, + "dependencies": { + "debug": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", + "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "@oclif/config": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@oclif/config/-/config-1.9.0.tgz", + "integrity": "sha512-R9HJvS7x4Ff/VFGlg8b7hxFnuC77y7znr1iXwRay4Jhd/EFJyZRT9d9SHzA6TS8lz9vDTW93xOFakT9AXld4Kg==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "tslib": "^1.9.3" + }, + "dependencies": { + "debug": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", + "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "@oclif/errors": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@oclif/errors/-/errors-1.2.2.tgz", + "integrity": "sha512-Eq8BFuJUQcbAPVofDxwdE0bL14inIiwt5EaKRVY9ZDIG11jwdXZqiQEECJx0VfnLyUZdYfRd/znDI/MytdJoKg==", + "dev": true, + "requires": { + "clean-stack": "^1.3.0", + "fs-extra": "^7.0.0", + "indent-string": "^3.2.0", + "strip-ansi": "^5.0.0", + "wrap-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.0.0.tgz", + "integrity": "sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==", + "dev": true + }, + "strip-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.0.0.tgz", + "integrity": "sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow==", + "dev": true, + "requires": { + "ansi-regex": "^4.0.0" + } + }, + "wrap-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-4.0.0.tgz", + "integrity": "sha512-uMTsj9rDb0/7kk1PbcbCcwvHUxp60fGDB/NNXpVa0Q+ic/e7y5+BwTxKfQ33VYgDppSwi/FBzpetYzo8s6tfbg==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + } + } + }, + "@oclif/linewrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz", + "integrity": "sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==", + "dev": true + }, + "@oclif/parser": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@oclif/parser/-/parser-3.7.0.tgz", + "integrity": "sha512-CtRbCBJQ8prt9o3nCTSRi/UEw68t7mUf19vu3QKbh6sGc6BkD7OAX6Hfjxif636LSlR+N8eh3PELw9SxHdJcbQ==", + "dev": true, + "requires": { + "@oclif/linewrap": "^1.0.0", + "chalk": "^2.4.1", + "tslib": "^1.9.3" + } + }, + "@oclif/plugin-autocomplete": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.1.0.tgz", + "integrity": "sha512-Dz2dGyBoOUcv6/gqr9qaG7KTIkYxILL0MvMVwlhkS0f6UqCsh8fC3adYTr8BeIPQmUqWkACtC7bYp9DyQ8m2Jw==", + "dev": true, + "requires": { + "@oclif/command": "^1.4.31", + "@oclif/config": "^1.6.22", + "@types/fs-extra": "^5.0.2", + "chalk": "^2.4.1", + "cli-ux": "^4.4.0", + "debug": "^3.1.0", + "fs-extra": "^6.0.1", + "moment": "^2.22.1" + }, + "dependencies": { + "fs-extra": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-6.0.1.tgz", + "integrity": "sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + } + } + }, + "@oclif/plugin-help": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-1.2.11.tgz", + "integrity": "sha512-tuzhvxxRtfLnWa96klngXBi5IwHt9S/twedCbQhl9dYIKTFMHI1BcOQcPra6ylct+M+b9jhEF5sjWLv78tB6tw==", + "dev": true, + "requires": { + "@oclif/command": "^1.4.29", + "chalk": "^2.4.1", + "indent-string": "^3.2.0", + "lodash.template": "^4.4.0", + "string-width": "^2.1.1", + "widest-line": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "dependencies": { + "wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" + } + } + } + }, + "@oclif/plugin-not-found": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-1.2.2.tgz", + "integrity": "sha512-SPlmiJFmTFltQT/owdzQwKgq6eq5AEKVwVK31JqbzK48bRWvEL1Ye60cgztXyZ4bpPn2Fl+KeL3FWFQX41qJuA==", + "dev": true, + "requires": { + "@oclif/color": "^0.0.0", + "@oclif/command": "^1.5.3", + "cli-ux": "^4.9.0", + "fast-levenshtein": "^2.0.6", + "lodash": "^4.17.11" + } + }, + "@oclif/plugin-plugins": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.7.3.tgz", + "integrity": "sha512-9aBcrETArBXLaS/21h0kMbiHNApgMF8gntRPcPhJTJ5zgsa29t2KOHRaTXZoy6on+E6Km/wvTiLx564zS0GqSA==", + "dev": true, + "requires": { + "@oclif/color": "^0.0.0", + "@oclif/command": "^1.5.4", + "chalk": "^2.4.1", + "cli-ux": "^4.9.3", + "debug": "^4.1.0", + "fs-extra": "^7.0.1", + "http-call": "^5.2.2", + "load-json-file": "^5.1.0", + "npm-run-path": "^2.0.2", + "semver": "^5.6.0", + "tslib": "^1.9.3", + "yarn": "^1.12.3" + }, + "dependencies": { + "debug": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", + "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "@oclif/plugin-warn-if-update-available": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-1.5.4.tgz", + "integrity": "sha512-WRLofKh7eejSlHx6N10kOddAzdftgBYRI7SwzEznDe67AijJo8uboUQUh3Emk8g3iLV77GkXP8FU49W5klmrdg==", + "dev": true, + "requires": { + "@oclif/command": "^1.5.3", + "@oclif/config": "^1.8.7", + "@oclif/errors": "^1.2.2", + "chalk": "^2.4.1", + "debug": "^4.1.0", + "fs-extra": "^7.0.0", + "http-call": "^5.2.2", + "semver": "^5.6.0" + }, + "dependencies": { + "debug": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz", + "integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "@oclif/screen": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@oclif/screen/-/screen-1.0.4.tgz", + "integrity": "sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw==", + "dev": true + }, "@octokit/rest": { "version": "15.17.0", "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-15.17.0.tgz", @@ -229,6 +624,85 @@ "url-template": "^2.0.8" } }, + "@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=", + "dev": true + }, + "@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "dev": true + }, + "@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "dev": true + }, + "@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=", + "dev": true + }, + "@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", + "dev": true, + "requires": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=", + "dev": true + }, + "@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=", + "dev": true + }, + "@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=", + "dev": true + }, + "@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=", + "dev": true + }, + "@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=", + "dev": true + }, + "@samverschueren/stream-to-observable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", + "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==", + "dev": true, + "requires": { + "any-observable": "^0.3.0" + } + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true + }, "@typed/curry": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@typed/curry/-/curry-1.0.1.tgz", @@ -248,6 +722,21 @@ "dev": true, "optional": true }, + "@types/babel-types": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.4.tgz", + "integrity": "sha512-WiZhq3SVJHFRgRYLXvpf65XnV6ipVHhnNaNvE8yCimejrGglkg38kEj0JcizqwSHxmPSjcTlig/6JouxLGEhGw==", + "dev": true + }, + "@types/babylon": { + "version": "6.16.3", + "resolved": "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.3.tgz", + "integrity": "sha512-lyJ8sW1PbY3uwuvpOBZ9zMYKshMnQpXmeDHh8dj9j2nJm/xrW0FgB5gLSYOArj5X0IfaXnmhFoJnhS4KbqIMug==", + "dev": true, + "requires": { + "@types/babel-types": "*" + } + }, "@types/base-64": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/@types/base-64/-/base-64-0.1.2.tgz", @@ -291,15 +780,21 @@ "@types/node": "*" } }, + "@types/deepmerge": { + "version": "2.1.0", + "resolved": "http://registry.npmjs.org/@types/deepmerge/-/deepmerge-2.1.0.tgz", + "integrity": "sha512-/0Ct/q5g+SgaACZ+A0ylY3071nEBN7QDnTWiCtaB3fx24UpoAQXf25yNVloOYVUis7jytM1F1WC78+EOwXkQJQ==", + "dev": true + }, "@types/empower": { "version": "1.2.30", - "resolved": "https://registry.npmjs.org/@types/empower/-/empower-1.2.30.tgz", + "resolved": "http://registry.npmjs.org/@types/empower/-/empower-1.2.30.tgz", "integrity": "sha1-x8/BSzph5Ux0xnTB+8kbot8NE5I=", "dev": true }, "@types/events": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/@types/events/-/events-1.2.0.tgz", "integrity": "sha512-KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA==", "dev": true }, @@ -352,9 +847,9 @@ "dev": true }, "@types/handlebars": { - "version": "4.0.36", - "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.0.36.tgz", - "integrity": "sha512-LjNiTX7TY7wtuC6y3QwC93hKMuqYhgV9A1uXBKNvZtVC8ZvyWAjZkJ5BvT0K7RKqORRYRLMrqCxpw5RgS+MdrQ==", + "version": "4.0.39", + "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.0.39.tgz", + "integrity": "sha512-vjaS7Q0dVqFp85QhyPSZqDKnTTCemcSHNHFvDdalO1s0Ifz5KuE64jQD5xoUkfdWwF4WpqdJEl7LsWH8rzhKJA==", "dev": true }, "@types/helmet": { @@ -382,6 +877,12 @@ "@types/through": "*" } }, + "@types/is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha512-zC/2EmD8scdsGIeE+Xg7kP7oi9VP90zgMQtm9Cr25av4V+a+k8slQyiT60qSw8KORYrOKlPXfHwoa1bQbRzskQ==", + "dev": true + }, "@types/isomorphic-fetch": { "version": "0.0.34", "resolved": "https://registry.npmjs.org/@types/isomorphic-fetch/-/isomorphic-fetch-0.0.34.tgz", @@ -399,6 +900,12 @@ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.118.tgz", "integrity": "sha512-iiJbKLZbhSa6FYRip/9ZDX6HXhayXLDGY2Fqws9cOkEQ6XeKfaxB0sC541mowZJueYyMnVUmmG+al5/4fCDrgw==" }, + "@types/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz", + "integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==", + "dev": true + }, "@types/marked": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/@types/marked/-/marked-0.4.2.tgz", @@ -424,9 +931,9 @@ "dev": true }, "@types/node": { - "version": "10.12.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.3.tgz", - "integrity": "sha512-sfGmOtSMSbQ/AKG8V9xD1gmjquC9awIIZ/Kj309pHb2n3bcRAcGMQv5nJ6gCXZVsneGE4+ve8DXKRCsrg3TFzg==" + "version": "10.12.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.12.6.tgz", + "integrity": "sha512-+ZWB5Ec1iki99xQFzBlivlKxSZQ+fuUKBott8StBOnLN4dWbRHlgdg1XknpW6g0tweniN5DcOqA64CJyOUPSAw==" }, "@types/passport": { "version": "0.4.7", @@ -459,7 +966,7 @@ }, "@types/power-assert": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@types/power-assert/-/power-assert-1.5.0.tgz", + "resolved": "http://registry.npmjs.org/@types/power-assert/-/power-assert-1.5.0.tgz", "integrity": "sha512-KPoeO2vSMGOOL1g8p/d7mvTTz7SCW7RRcpavqxhFwKZoqsDd1nwPGE9QICIt50b348/9MJYuBdwjUK34Y09XJw==", "dev": true, "requires": { @@ -469,14 +976,14 @@ }, "@types/power-assert-formatter": { "version": "1.4.28", - "resolved": "https://registry.npmjs.org/@types/power-assert-formatter/-/power-assert-formatter-1.4.28.tgz", + "resolved": "http://registry.npmjs.org/@types/power-assert-formatter/-/power-assert-formatter-1.4.28.tgz", "integrity": "sha1-Jbj922MiJZxrkcNTONObD45SQlI=", "dev": true }, "@types/prettier": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.10.0.tgz", - "integrity": "sha512-mjEM5uxPvMYg8LLcnmHzMy2G7HFRv7aQtcKslpmHg8SIIQutnLpLfps+1soV2YBlVBFrskR+F6I+nBI9NTh49w==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.13.2.tgz", + "integrity": "sha512-k6MCN8WuDiCj6O+UJsVMbrreZxkbrhQbO02oDj6yuRu8UAkp0MDdEcDKif8/gBKuJbT84kkO+VHQAqXkumEklg==", "dev": true }, "@types/promise-retry": { @@ -676,6 +1183,12 @@ "@types/node": "*" } }, + "@types/valid-url": { + "version": "1.0.2", + "resolved": "http://registry.npmjs.org/@types/valid-url/-/valid-url-1.0.2.tgz", + "integrity": "sha1-YPpDXOJL/VuhB7jSqAeWrq86j0U=", + "dev": true + }, "@types/ws": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-6.0.1.tgz", @@ -730,26 +1243,15 @@ } }, "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", + "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", "dev": true, "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", + "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "dev": true, - "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, "amdefine": { @@ -779,9 +1281,24 @@ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, "ansi-styles": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.2.0.tgz", - "integrity": "sha1-NZq0sV3NZLptdHNLcsNjYKmvLBk=", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "ansicolors": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", + "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=", + "dev": true + }, + "any-observable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", + "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", "dev": true }, "anymatch": { @@ -794,6 +1311,45 @@ "normalize-path": "^2.1.1" } }, + "apollo": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/apollo/-/apollo-2.0.17.tgz", + "integrity": "sha512-8WIRvRcexb7UfwZrvCgOK0NmlwYHknxhnQ+Kx8Q2x37trkBnN2lwCzOsLrx05XDFaHoRcYE/36sDa+Xt992Pnw==", + "dev": true, + "requires": { + "@apollographql/apollo-tools": "0.2.6", + "@oclif/command": "^1.4.21", + "@oclif/config": "^1.6.17", + "@oclif/plugin-autocomplete": "^0.1.0", + "@oclif/plugin-help": "^1.2.11", + "@oclif/plugin-not-found": "^1.0.9", + "@oclif/plugin-plugins": "^1.7.2", + "@oclif/plugin-warn-if-update-available": "^1.3.9", + "apollo-codegen-core": "0.29.14", + "apollo-codegen-flow": "0.29.14", + "apollo-codegen-scala": "0.29.14", + "apollo-codegen-swift": "0.29.14", + "apollo-codegen-typescript": "0.29.14", + "apollo-engine-reporting": "0.0.2", + "apollo-env": "0.2.3", + "apollo-language-server": "1.0.14", + "chalk": "^2.4.1", + "cli-ux": "^4.3.0", + "env-ci": "^2.1.0", + "gaze": "^1.1.3", + "git-parse": "^1.0.3", + "git-rev-sync": "^1.12.0", + "glob": "^7.1.2", + "graphql": "^14.0.2", + "graphql-tag": "^2.9.2", + "heroku-cli-util": "^8.0.9", + "listr": "^0.14.1", + "lodash": "^4.17.10", + "rimraf": "^2.6.2", + "tty": "^1.0.1", + "vscode-uri": "^1.0.6" + } + }, "apollo-cache": { "version": "1.1.20", "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.1.20.tgz", @@ -801,17 +1357,6 @@ "dev": true, "requires": { "apollo-utilities": "^1.0.25" - }, - "dependencies": { - "apollo-utilities": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.25.tgz", - "integrity": "sha512-AXvqkhni3Ir1ffm4SA1QzXn8k8I5BBl4PVKEyak734i4jFdp+xgfUyi2VCqF64TJlFTA/B73TRDUvO2D+tKtZg==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "^2.0.0" - } - } } }, "apollo-cache-inmemory": { @@ -823,17 +1368,6 @@ "apollo-cache": "^1.1.20", "apollo-utilities": "^1.0.25", "optimism": "^0.6.6" - }, - "dependencies": { - "apollo-utilities": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.25.tgz", - "integrity": "sha512-AXvqkhni3Ir1ffm4SA1QzXn8k8I5BBl4PVKEyak734i4jFdp+xgfUyi2VCqF64TJlFTA/B73TRDUvO2D+tKtZg==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "^2.0.0" - } - } } }, "apollo-client": { @@ -850,163 +1384,169 @@ "apollo-utilities": "1.0.25", "symbol-observable": "^1.0.2", "zen-observable": "^0.8.0" - }, - "dependencies": { - "apollo-utilities": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.25.tgz", - "integrity": "sha512-AXvqkhni3Ir1ffm4SA1QzXn8k8I5BBl4PVKEyak734i4jFdp+xgfUyi2VCqF64TJlFTA/B73TRDUvO2D+tKtZg==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "^2.0.0" - } - } - } - }, - "apollo-codegen": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/apollo-codegen/-/apollo-codegen-0.20.2.tgz", - "integrity": "sha512-f95fPGoQoj+XcR7JWgR35mUYrD7RWT4kHbtSLs3aHeRFOKUHEWW2nHUNTOtQbbIdLulRuxPQCTvSddT7fFwhrA==", - "dev": true, - "requires": { - "apollo-codegen-core": "^0.20.0", - "apollo-codegen-flow": "^0.20.0", - "apollo-codegen-flow-legacy": "^0.20.0", - "apollo-codegen-scala": "^0.20.0", - "apollo-codegen-swift": "^0.20.0", - "apollo-codegen-typescript": "^0.20.0", - "apollo-codegen-typescript-legacy": "^0.20.0", - "glob": "^7.1.2", - "graphql": "^0.13.1", - "node-fetch": "^1.7.3", - "rimraf": "^2.6.2", - "source-map-support": "^0.5.0", - "yargs": "^10.0.3" - }, - "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "dev": true, - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - } - }, - "yargs": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-10.1.2.tgz", - "integrity": "sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==", - "dev": true, - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.1.1", - "find-up": "^2.1.0", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^8.1.0" - } - }, - "yargs-parser": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz", - "integrity": "sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==", - "dev": true, - "requires": { - "camelcase": "^4.1.0" - } - } } }, "apollo-codegen-core": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.20.1.tgz", - "integrity": "sha512-sanUIqXWyyDpxY3fYOVU+Hsxwxdj5fmn3Zcy6CcMGnWmh9o7tautQAuod2a63wrDs1jcNQcFq3EKIpeB+2xECw==", + "version": "0.29.14", + "resolved": "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.29.14.tgz", + "integrity": "sha512-qpxMUkBT+pvhH7dbZ2GAtc7Cs5MIrfn6QW+zChoiCKSqRUdfT+sMhi7JZLAuT2AaYbvRL3m53JlJbp1NyWTbBQ==", "dev": true, "requires": { - "@babel/generator": "7.0.0-beta.38", - "@babel/types": "7.0.0-beta.38", + "@babel/generator": "7.1.3", + "@babel/parser": "^7.1.3", + "@babel/types": "7.1.3", + "apollo-env": "0.2.3", + "apollo-language-server": "1.0.14", + "ast-types": "^0.11.6", "common-tags": "^1.5.1", - "core-js": "^2.5.3", - "graphql-config": "^2.0.1" + "recast": "^0.15.3" } }, "apollo-codegen-flow": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.20.0.tgz", - "integrity": "sha512-XgKE19B0Q74PBLVqHP/77NcCFrcvrN9wi3CcotH+FV8BeHTjvpHlilTsQMmd2STPt19cCvY2Qtz0EOeLXTUQ2Q==", + "version": "0.29.14", + "resolved": "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.29.14.tgz", + "integrity": "sha512-Quvs+0a3bn31mBLQSRkU5s/zeZDLaCRinFbbLIi2498HYaBL8La4qoNcI2awMrA/iVA+s+i2quSzfBfI9+0H/Q==", "dev": true, "requires": { - "apollo-codegen-core": "^0.20.0", + "@babel/types": "7.1.3", + "apollo-codegen-core": "0.29.14", + "apollo-env": "0.2.3", "change-case": "^3.0.1", "inflected": "^2.0.3" } }, - "apollo-codegen-flow-legacy": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-flow-legacy/-/apollo-codegen-flow-legacy-0.20.0.tgz", - "integrity": "sha512-kGjJNkkkob9gGYSIhwfdgOzkj0PuN4/QPhng4ckSaSCE+8E4Awyvk0P8LiYPKauHzHVjmJzxWLSG6kI0PQTNgA==", - "dev": true, - "requires": { - "apollo-codegen-core": "^0.20.0" - } - }, "apollo-codegen-scala": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.20.0.tgz", - "integrity": "sha512-NbnMOfUXXovlTGRj4mIZGXB9HvidQhwKfAmdYHox5peHPkjjsqEzxGCIuWCSnubWiCF2uHZnQoIkg4sXWf0KLw==", + "version": "0.29.14", + "resolved": "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.29.14.tgz", + "integrity": "sha512-k5KQUCRW7Bgnsn6oPjJQlaFNyo232QqlyG4fHJG4E/00I/Im4t5I+b7IaBmB4XKf6GmlZhYgXVVI50uaWaRX4w==", "dev": true, "requires": { - "apollo-codegen-core": "^0.20.0", + "apollo-codegen-core": "0.29.14", + "apollo-env": "0.2.3", "change-case": "^3.0.1", "inflected": "^2.0.3" } }, "apollo-codegen-swift": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.20.0.tgz", - "integrity": "sha512-L9Y4StbXw0t/nuF+miz0ybSt/io6tsLc063Yeh1A8GCvhFFQyXE/yK0Rf3nO1Bl5Z9UZ5o8Aae9kK4GSWYIGNQ==", + "version": "0.29.14", + "resolved": "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.29.14.tgz", + "integrity": "sha512-UVN2+ElepPsfIbgimW3QnQJi+rPzI9PtozGSP3PCULYXNDEewzn10lB5Fn3oDi+xxPpc8IhMAi8HQlJ/MyV4Bw==", "dev": true, "requires": { - "apollo-codegen-core": "^0.20.0", + "apollo-codegen-core": "0.29.14", + "apollo-env": "0.2.3", "change-case": "^3.0.1", "inflected": "^2.0.3" } }, "apollo-codegen-typescript": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.20.0.tgz", - "integrity": "sha512-mzlIJXz+5WPwzeALqRHHR9aPPEf6IlhSrjCawpUHmFU1NK9hgwbguYCEYZv9mKkYBUUgDY+9cGFK1cafJX70AQ==", + "version": "0.29.14", + "resolved": "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.29.14.tgz", + "integrity": "sha512-mBp6z/MYctGmkbAGdS6H/RZxzZ3usmL21+xqJ6mJGc+ViQwmfYkttgcI4pr5PA3jBAd40Kg9zURowHsRfY7IiQ==", "dev": true, "requires": { - "apollo-codegen-core": "^0.20.0", + "@babel/types": "7.1.3", + "apollo-codegen-core": "0.29.14", + "apollo-env": "0.2.3", "change-case": "^3.0.1", "inflected": "^2.0.3" } }, - "apollo-codegen-typescript-legacy": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/apollo-codegen-typescript-legacy/-/apollo-codegen-typescript-legacy-0.20.0.tgz", - "integrity": "sha512-0/h5hce2FIGn6Y4+EHMeMINQxFwcgjw1vU+xV3KGaaEgyEAEQ3/n9pyz43M8mOm/JVgg8Eb4CtM1AtCkRQuFGw==", + "apollo-datasource": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.1.3.tgz", + "integrity": "sha512-yEGEe5Cjzqqu5ml1VV3O8+C+thzdknZri9Ny0P3daTGNO+45J3vBOMcmaANeeI2+OOeWxdqUNa5aPOx/35kniw==", + "dev": true, + "requires": { + "apollo-server-caching": "0.1.2", + "apollo-server-env": "2.0.3" + } + }, + "apollo-engine-reporting": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-0.0.2.tgz", + "integrity": "sha512-Fe/1oxC8rUXRrBTMUiqs5PSb6hnMOJHuttJMhs83u5POfplc4QrKJZtEEU4Ui8mxeJGaGNWbWf+D4q645xdQLA==", + "dev": true, + "requires": { + "apollo-engine-reporting-protobuf": "0.0.1", + "apollo-server-env": "2.0.2", + "async-retry": "^1.2.1", + "graphql-extensions": "0.1.2", + "lodash": "^4.17.10" + }, + "dependencies": { + "apollo-server-env": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.0.2.tgz", + "integrity": "sha512-LsSh2TSF1Sh+TnKxCv2To+UNTnoPpBGCXn6fPsmiNqVaBaSagfZEU/aaSu3ftMlmfXr4vXAfYNUDMKEi+7E6Bg==", + "dev": true, + "requires": { + "node-fetch": "^2.1.2", + "util.promisify": "^1.0.0" + } + } + } + }, + "apollo-engine-reporting-protobuf": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.0.1.tgz", + "integrity": "sha512-AySoDgog2p1Nph44FyyqaU4AfRZOXx8XZxRsVHvYY4dHlrMmDDhhjfF3Jswa7Wr8X/ivvx3xA0jimRn6rsG8Ew==", "dev": true, "requires": { - "apollo-codegen-core": "^0.20.0" + "protobufjs": "^6.8.6" + } + }, + "apollo-env": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/apollo-env/-/apollo-env-0.2.3.tgz", + "integrity": "sha512-7hRWPG8tWQNXCNrZsOMqxtkHGqhTzFgsw7RpFDyC1xgcZvVFCJvthWgWO07EhcaHhRqvrPxmicLnoTw2e/iCsA==", + "dev": true, + "requires": { + "core-js": "^3.0.0-beta.3", + "node-fetch": "^2.2.0" + } + }, + "apollo-language-server": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/apollo-language-server/-/apollo-language-server-1.0.14.tgz", + "integrity": "sha512-/ecYdrYn1sF0tWOrTJGw/P1o7XjjhgDzSRwtqdlL2mYAeg88jx7+preRqlx473vcxZNz1GUXOUFSin/6gQNKPw==", + "dev": true, + "requires": { + "@apollographql/apollo-tools": "0.2.6", + "@apollographql/graphql-language-service-interface": "^2.0.2", + "@endemolshinegroup/cosmiconfig-typescript-loader": "^1.0.0", + "apollo-datasource": "^0.1.3", + "apollo-env": "0.2.3", + "apollo-link": "^1.2.3", + "apollo-link-context": "^1.0.9", + "apollo-link-error": "^1.1.1", + "apollo-link-http": "^1.5.5", + "apollo-link-ws": "^1.0.9", + "apollo-server-errors": "^2.0.2", + "await-to-js": "^2.0.1", + "core-js": "^3.0.0-beta.3", + "cosmiconfig": "^5.0.6", + "dotenv": "^6.1.0", + "glob": "^7.1.3", + "graphql": "^14.0.2", + "graphql-tag": "^2.10.0", + "lodash": "^4.17.11", + "minimatch": "^3.0.4", + "minimist": "^1.2.0", + "moment": "^2.22.2", + "recursive-readdir": "^2.2.2", + "subscriptions-transport-ws": "^0.9.15", + "vscode-languageserver": "^5.1.0", + "vscode-uri": "^1.0.6", + "ws": "^6.1.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + } } }, "apollo-link": { @@ -1019,6 +1559,15 @@ "zen-observable-ts": "^0.8.10" } }, + "apollo-link-context": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/apollo-link-context/-/apollo-link-context-1.0.9.tgz", + "integrity": "sha512-gcC1WH7mTyNtS0bF4fPijepXqnERwZjm1JCkuOT6ADBTpDTXIqK+Ec+/QkVawDO26EV9OX5ujWe4kI1qC6T6tA==", + "dev": true, + "requires": { + "apollo-link": "^1.2.3" + } + }, "apollo-link-dedup": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/apollo-link-dedup/-/apollo-link-dedup-1.0.10.tgz", @@ -1028,6 +1577,15 @@ "apollo-link": "^1.2.3" } }, + "apollo-link-error": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/apollo-link-error/-/apollo-link-error-1.1.1.tgz", + "integrity": "sha512-/yPcaQWcBdB94vpJ4FsiCJt1dAGGRm+6Tsj3wKwP+72taBH+UsGRQQZk7U/1cpZwl1yqhHZn+ZNhVOebpPcIlA==", + "dev": true, + "requires": { + "apollo-link": "^1.2.3" + } + }, "apollo-link-http": { "version": "1.5.5", "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.5.tgz", @@ -1047,10 +1605,44 @@ "apollo-link": "^1.2.3" } }, + "apollo-link-ws": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/apollo-link-ws/-/apollo-link-ws-1.0.9.tgz", + "integrity": "sha512-CtKwLE61bCJTW5jrucOMm5PubeAlCl/9i45pg4GKKlAbl0zR4i2dww8TJkYoIY6iCyj4qjKW/uqGD6v5/aVwhg==", + "dev": true, + "requires": { + "apollo-link": "^1.2.3" + } + }, + "apollo-server-caching": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.1.2.tgz", + "integrity": "sha512-jBRnsTgXN0m8yVpumoelaUq9mXR7YpJ3EE+y/alI7zgXY+0qFDqksRApU8dEfg3q6qUnO7rFxRhdG5eyc0+1ig==", + "dev": true, + "requires": { + "lru-cache": "^4.1.3" + } + }, + "apollo-server-env": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.0.3.tgz", + "integrity": "sha512-uIfKFH8n8xKO0eLb9Fa79+s2DdMuVethgznvW6SrOYq5VzgkIIobqKEuZPKa5wObw9CkCyju/+Sr7b7WWMFxUQ==", + "dev": true, + "requires": { + "node-fetch": "^2.1.2", + "util.promisify": "^1.0.0" + } + }, + "apollo-server-errors": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.2.0.tgz", + "integrity": "sha512-gV9EZG2tovFtT1cLuCTavnJu2DaKxnXPRNGSTo+SDI6IAk6cdzyW0Gje5N2+3LybI0Wq5KAbW6VLei31S4MWmg==", + "dev": true + }, "apollo-utilities": { - "version": "1.0.24", - "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.24.tgz", - "integrity": "sha512-cOXtrkio3wKfggp/zKCzQYxSZZRND/njNVmUksM1cckoJF3g/2o3bhh6z0HPhNhee8qzJzVXtl+3vmwXYGh0Gg==", + "version": "1.0.25", + "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.0.25.tgz", + "integrity": "sha512-AXvqkhni3Ir1ffm4SA1QzXn8k8I5BBl4PVKEyak734i4jFdp+xgfUyi2VCqF64TJlFTA/B73TRDUvO2D+tKtZg==", "dev": true, "requires": { "fast-json-stable-stringify": "^2.0.0" @@ -1150,6 +1742,12 @@ "pad": "0.0.4" }, "dependencies": { + "ansi-styles": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.2.0.tgz", + "integrity": "sha1-NZq0sV3NZLptdHNLcsNjYKmvLBk=", + "dev": true + }, "chalk": { "version": "0.3.0", "resolved": "http://registry.npmjs.org/chalk/-/chalk-0.3.0.tgz", @@ -1183,12 +1781,21 @@ "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", "dev": true }, - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "ast-types": { + "version": "0.11.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.11.6.tgz", + "integrity": "sha512-nHiuV14upVGl7MWwFUYbzJ6YlfwWS084CU9EA8HajfYQjMSli5TQi3UTRygGF58LFWVkXxS1rbgRhROEqlQkXg==", "dev": true }, + "async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", + "dev": true, + "requires": { + "lodash": "^4.17.10" + } + }, "async-each": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", @@ -1207,6 +1814,15 @@ "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", "dev": true }, + "async-retry": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.2.3.tgz", + "integrity": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==", + "dev": true, + "requires": { + "retry": "0.12.0" + } + }, "asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -1219,6 +1835,12 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true }, + "await-to-js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/await-to-js/-/await-to-js-2.0.1.tgz", + "integrity": "sha512-zJIZ/G2/sghdDWRMFO2R1Qn4RBPl/OEIe2Cfiz/VXfQS0lmyZwrq4Wmxai4KpvtnsijIadzttwjaSfg1s3CcLQ==", + "dev": true + }, "aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", @@ -1233,7 +1855,7 @@ }, "axios": { "version": "0.18.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.18.0.tgz", + "resolved": "http://registry.npmjs.org/axios/-/axios-0.18.0.tgz", "integrity": "sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=", "requires": { "follow-redirects": "^1.3.0", @@ -1283,7 +1905,7 @@ }, "chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { @@ -1294,15 +1916,9 @@ "supports-color": "^2.0.0" } }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { @@ -1317,16 +1933,72 @@ } } }, + "babel-polyfill": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", + "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", + "dev": true, + "requires": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } + } + }, "babel-runtime": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", "dev": true, "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "dev": true + } + } + }, + "babel-types": { + "version": "7.0.0-beta.3", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.3.tgz", + "integrity": "sha512-36k8J+byAe181OmCMawGhw+DtKO7AwexPVtsPXoMfAkjtZgoCX3bEuHWfdE5sYxRM8dojvtG/+O08M0Z/YDC6w==", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.2.0", + "to-fast-properties": "^2.0.0" } }, + "babylon": { + "version": "7.0.0-beta.47", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.47.tgz", + "integrity": "sha512-+rq2cr4GDhtToEzKFD6KZZMDBXhjFAr9JjPw9pAppZACeEWqNM294j+NdBzkSHYXwzzBmVjZ3nEVJlOhbR2gOQ==", + "dev": true + }, + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", + "dev": true + }, "balanced-match": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", @@ -1393,12 +2065,6 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true } } }, @@ -1470,12 +2136,12 @@ } }, "boom": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/boom/-/boom-7.2.2.tgz", + "integrity": "sha512-IFUbOa8PS7xqmhIjpeStwT3d09hGkNYQ6aj2iELSTxcVs2u0aKn1NzhkdUQSzsRg1FVkj3uit3I6mXQCBixw+A==", "dev": true, "requires": { - "hoek": "4.x.x" + "hoek": "6.x.x" } }, "boxen": { @@ -1518,6 +2184,17 @@ "snapdragon-node": "^2.0.1", "split-string": "^3.0.2", "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "browser-stdout": { @@ -1526,6 +2203,15 @@ "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", "dev": true }, + "bser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", + "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, "btoa-lite": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", @@ -1566,6 +2252,12 @@ "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", "dev": true }, + "byline": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz", + "integrity": "sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE=", + "dev": true + }, "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", @@ -1589,6 +2281,29 @@ "unset-value": "^1.0.0" } }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "dev": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "dev": true + } + } + }, "call-matcher": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/call-matcher/-/call-matcher-1.1.0.tgz", @@ -1599,6 +2314,14 @@ "deep-equal": "^1.0.0", "espurify": "^1.6.0", "estraverse": "^4.0.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "call-signature": { @@ -1607,6 +2330,30 @@ "integrity": "sha1-qEq8glpV70yysCi9dOIFpluaSZY=", "dev": true }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + }, "camel-case": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", @@ -1634,23 +2381,22 @@ "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", "dev": true }, + "cardinal": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", + "integrity": "sha1-fMEFXYItISlU0HsIXeolHMe8VQU=", + "dev": true, + "requires": { + "ansicolors": "~0.3.2", + "redeyed": "~2.1.0" + } + }, "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "dev": true, - "optional": true, - "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" - } - }, "chalk": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", @@ -1660,17 +2406,6 @@ "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - } } }, "change-case": { @@ -1776,8 +2511,25 @@ "define-property": "^0.2.5", "isobject": "^3.0.0", "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } } }, + "clean-stack": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz", + "integrity": "sha1-noIVAa6XmYbEax1m0tQy2y/UrjE=", + "dev": true + }, "cli-boxes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", @@ -1785,12 +2537,117 @@ "dev": true }, "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", + "dev": true, + "requires": { + "restore-cursor": "^1.0.1" + } + }, + "cli-spinners": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz", + "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==", + "dev": true + }, + "cli-truncate": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", + "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", + "dev": true, + "requires": { + "slice-ansi": "0.0.4", + "string-width": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "cli-ux": { + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/cli-ux/-/cli-ux-4.9.3.tgz", + "integrity": "sha512-/1owvF0SZ5Gn54cgrikJ0QskgTzeg30HGjkmjFoaHDJzAqFpuX1DBpFR8aLvsE1J5s9MgeYRENQK4BFwOag5VA==", "dev": true, "requires": { - "restore-cursor": "^2.0.0" + "@oclif/errors": "^1.2.2", + "@oclif/linewrap": "^1.0.0", + "@oclif/screen": "^1.0.3", + "ansi-escapes": "^3.1.0", + "ansi-styles": "^3.2.1", + "cardinal": "^2.1.1", + "chalk": "^2.4.1", + "clean-stack": "^2.0.0", + "extract-stack": "^1.0.0", + "fs-extra": "^7.0.0", + "hyperlinker": "^1.0.0", + "indent-string": "^3.2.0", + "is-wsl": "^1.1.0", + "lodash": "^4.17.11", + "password-prompt": "^1.0.7", + "semver": "^5.6.0", + "strip-ansi": "^5.0.0", + "supports-color": "^5.5.0", + "supports-hyperlinks": "^1.0.1", + "treeify": "^1.1.0", + "tslib": "^1.9.3" + }, + "dependencies": { + "ansi-regex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.0.0.tgz", + "integrity": "sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w==", + "dev": true + }, + "clean-stack": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.0.0.tgz", + "integrity": "sha512-VEoL9Qh7I8s8iHnV53DaeWSt8NJ0g3khMfK6NiCPB7H657juhro+cSw2O88uo3bo0c0X5usamtXk0/Of0wXa5A==", + "dev": true + }, + "strip-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.0.0.tgz", + "integrity": "sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow==", + "dev": true, + "requires": { + "ansi-regex": "^4.0.0" + } + } } }, "cli-width": { @@ -1810,14 +2667,23 @@ } }, "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "dev": true }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, "cluster": { "version": "0.7.7", - "resolved": "https://registry.npmjs.org/cluster/-/cluster-0.7.7.tgz", + "resolved": "http://registry.npmjs.org/cluster/-/cluster-0.7.7.tgz", "integrity": "sha1-5JfiZ8yVa9CwUTrbSqOTNX0Ahe8=", "dev": true, "requires": { @@ -1913,19 +2779,16 @@ } }, "commander": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.0.tgz", - "integrity": "sha512-7B1ilBwtYSbetCgTY1NJFg+gVpestg0fdA1MhC1Vs4ssyfSXnCAjFr+QcQM9/RedXC0EaUx1sG8Smgw2VfgKEg==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", "dev": true }, "common-tags": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz", - "integrity": "sha512-joj9ZlUOjCrwdbmiLqafeUSgkUM74NqhLsZtSqDmhKudaIY197zTrb8JMl31fMnCUuxwFT23eC/oWvrZzDLRJQ==", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0" - } + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "dev": true }, "component-emitter": { "version": "1.2.1", @@ -2021,9 +2884,9 @@ } }, "core-js": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", - "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "version": "3.0.0-beta.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.0.0-beta.3.tgz", + "integrity": "sha512-kM/OfrnMThP5PwGAj5HhQLdjUqzjrllqN2EVnk/X9qrLsfYjR2hzZ+E/8CzH0xuosexZtqMTLQrk//BULrBj9w==", "dev": true }, "core-util-is": { @@ -2041,6 +2904,18 @@ "vary": "^1" } }, + "cosmiconfig": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.7.tgz", + "integrity": "sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.9.0", + "parse-json": "^4.0.0" + } + }, "crc": { "version": "3.4.4", "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz", @@ -2084,26 +2959,6 @@ "which": "^1.2.9" } }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", - "dev": true, - "requires": { - "boom": "5.x.x" - }, - "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", - "dev": true, - "requires": { - "hoek": "4.x.x" - } - } - } - }, "crypto-random-string": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", @@ -2112,7 +2967,7 @@ }, "d": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "resolved": "http://registry.npmjs.org/d/-/d-1.0.0.tgz", "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", "dev": true, "requires": { @@ -2134,6 +2989,12 @@ "integrity": "sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=", "dev": true }, + "date-fns": { + "version": "1.29.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.29.0.tgz", + "integrity": "sha512-lbTXWZ6M20cWH8N9S6afb0SBm6tMk+uUg6z3MqHPKE9atmsY3kJkTm8vKe93izJ2B2+q5MV990sM2CHgtAZaOw==", + "dev": true + }, "debug": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", @@ -2153,6 +3014,15 @@ "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", "dev": true }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, "deep-equal": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", @@ -2171,6 +3041,21 @@ "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", "dev": true }, + "deepmerge": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==", + "dev": true + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, "define-properties": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", @@ -2181,12 +3066,44 @@ } }, "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, "requires": { - "is-descriptor": "^0.1.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } } }, "delayed-stream": { @@ -2266,9 +3183,15 @@ "is-obj": "^1.0.0" } }, + "dotenv": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.1.0.tgz", + "integrity": "sha512-/veDn2ztgRlB7gKmE3i9f6CmDIyXAy6d5nBq+whO9SLX+Zs1sXEgFLPi+aSuWqUuusMfbi84fT8j34fs1HaYUw==", + "dev": true + }, "duplexer": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "resolved": "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", "dev": true }, @@ -2344,6 +3267,12 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, + "elegant-spinner": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", + "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "dev": true + }, "empower": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/empower/-/empower-1.3.1.tgz", @@ -2352,6 +3281,14 @@ "requires": { "core-js": "^2.0.0", "empower-core": "^1.2.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "empower-assert": { @@ -2371,6 +3308,14 @@ "requires": { "call-signature": "0.0.2", "core-js": "^2.0.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "enabled": { @@ -2388,22 +3333,62 @@ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", "dev": true }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "dev": true, - "requires": { - "iconv-lite": "~0.4.13" - } - }, "end-of-stream": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", "dev": true, "requires": { - "once": "^1.4.0" + "once": "^1.4.0" + } + }, + "env-ci": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-2.6.0.tgz", + "integrity": "sha512-tnOi9qgtDxY3mvf69coXLHbSZtFMNGAJ1s/huirAhJZTx9rs/1qgFjl+6Z5ULQCfpDmlsf34L7wm+eJGwMazYg==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "java-properties": "^0.2.9" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } } }, "env-variable": { @@ -2425,14 +3410,6 @@ "dev": true, "requires": { "is-arrayish": "^0.2.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - } } }, "es-abstract": { @@ -2553,6 +3530,14 @@ "requires": { "call-matcher": "^1.0.0", "esprima": "^2.0.0" + }, + "dependencies": { + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + } } }, "escape-html": { @@ -2623,14 +3608,6 @@ "source-map": "^0.5.0", "type-name": "^2.0.0", "xtend": "^4.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } } }, "espower-location-detector": { @@ -2643,14 +3620,6 @@ "path-is-absolute": "^1.0.0", "source-map": "^0.5.0", "xtend": "^4.0.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } } }, "espower-source": { @@ -2685,20 +3654,11 @@ } }, "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, - "esprima-extract-comments": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/esprima-extract-comments/-/esprima-extract-comments-0.2.1.tgz", - "integrity": "sha1-kBjY3zf/2V3WFQFajF8Ede10NCM=", - "dev": true, - "requires": { - "esprima": "^2.7.1" - } - }, "espurify": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/espurify/-/espurify-1.8.1.tgz", @@ -2706,6 +3666,14 @@ "dev": true, "requires": { "core-js": "^2.0.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "esrecurse": { @@ -2761,6 +3729,12 @@ "through": "^2.3.8" } }, + "eventemitter3": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz", + "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==", + "dev": true + }, "events": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/events/-/events-2.1.0.tgz", @@ -2781,6 +3755,12 @@ "strip-eof": "^1.0.0" } }, + "exit-hook": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=", + "dev": true + }, "expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", @@ -2804,6 +3784,24 @@ "requires": { "ms": "2.0.0" } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } } } }, @@ -2903,12 +3901,24 @@ "dev": true }, "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "dev": true, "requires": { - "is-extendable": "^0.1.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } } }, "external-editor": { @@ -2958,6 +3968,15 @@ "is-descriptor": "^1.0.0" } }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, "is-accessor-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", @@ -2986,26 +4005,14 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true } } }, - "extract-comments": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/extract-comments/-/extract-comments-0.10.1.tgz", - "integrity": "sha1-i2AxgIovX94c1nv4MXuRggQwRAg=", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "esprima-extract-comments": "^0.2.1", - "extend-shallow": "^2.0.1", - "parse-code-context": "^0.2.1" - } + "extract-stack": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/extract-stack/-/extract-stack-1.0.0.tgz", + "integrity": "sha1-uXrK+UQe6iMyUpYktzL8WhyBZfo=", + "dev": true }, "extsprintf": { "version": "1.3.0", @@ -3014,9 +4021,9 @@ "dev": true }, "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", "dev": true }, "fast-json-stable-stringify": { @@ -3037,6 +4044,15 @@ "integrity": "sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg==", "dev": true }, + "fb-watchman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "dev": true, + "requires": { + "bser": "^2.0.0" + } + }, "feature-policy": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.2.0.tgz", @@ -3050,12 +4066,13 @@ "dev": true }, "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", "dev": true, "requires": { - "escape-string-regexp": "^1.0.5" + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" } }, "fill-range": { @@ -3068,6 +4085,17 @@ "is-number": "^3.0.0", "repeat-string": "^1.6.1", "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "finalhandler": { @@ -3229,6 +4257,48 @@ "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", "dev": true }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "fs-extra": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", @@ -3257,28 +4327,24 @@ "dependencies": { "abbrev": { "version": "1.1.1", - "resolved": false, - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "bundled": true, "dev": true, "optional": true }, "ansi-regex": { "version": "2.1.1", - "resolved": false, - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "bundled": true, "dev": true }, "aproba": { "version": "1.2.0", - "resolved": false, - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "bundled": true, "dev": true, "optional": true }, "are-we-there-yet": { "version": "1.1.4", - "resolved": false, - "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3288,14 +4354,12 @@ }, "balanced-match": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "bundled": true, "dev": true }, "brace-expansion": { "version": "1.1.11", - "resolved": false, - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "bundled": true, "dev": true, "requires": { "balanced-match": "^1.0.0", @@ -3304,40 +4368,34 @@ }, "chownr": { "version": "1.0.1", - "resolved": false, - "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", + "bundled": true, "dev": true, "optional": true }, "code-point-at": { "version": "1.1.0", - "resolved": false, - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "bundled": true, "dev": true }, "concat-map": { "version": "0.0.1", - "resolved": false, - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "bundled": true, "dev": true }, "console-control-strings": { "version": "1.1.0", - "resolved": false, - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "bundled": true, "dev": true }, "core-util-is": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "bundled": true, "dev": true, "optional": true }, "debug": { "version": "2.6.9", - "resolved": false, - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3346,29 +4404,25 @@ }, "deep-extend": { "version": "0.5.1", - "resolved": false, - "integrity": "sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w==", + "bundled": true, "dev": true, "optional": true }, "delegates": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "bundled": true, "dev": true, "optional": true }, "detect-libc": { "version": "1.0.3", - "resolved": false, - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "bundled": true, "dev": true, "optional": true }, "fs-minipass": { "version": "1.2.5", - "resolved": false, - "integrity": "sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3377,15 +4431,13 @@ }, "fs.realpath": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "bundled": true, "dev": true, "optional": true }, "gauge": { "version": "2.7.4", - "resolved": false, - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3401,8 +4453,7 @@ }, "glob": { "version": "7.1.2", - "resolved": false, - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3416,15 +4467,13 @@ }, "has-unicode": { "version": "2.0.1", - "resolved": false, - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "bundled": true, "dev": true, "optional": true }, "iconv-lite": { "version": "0.4.21", - "resolved": false, - "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3433,8 +4482,7 @@ }, "ignore-walk": { "version": "3.0.1", - "resolved": false, - "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3443,8 +4491,7 @@ }, "inflight": { "version": "1.0.6", - "resolved": false, - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3454,21 +4501,18 @@ }, "inherits": { "version": "2.0.3", - "resolved": false, - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "bundled": true, "dev": true }, "ini": { "version": "1.3.5", - "resolved": false, - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "bundled": true, "dev": true, "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "bundled": true, "dev": true, "requires": { "number-is-nan": "^1.0.0" @@ -3476,15 +4520,13 @@ }, "isarray": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "bundled": true, "dev": true, "optional": true }, "minimatch": { "version": "3.0.4", - "resolved": false, - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "bundled": true, "dev": true, "requires": { "brace-expansion": "^1.1.7" @@ -3492,14 +4534,12 @@ }, "minimist": { "version": "0.0.8", - "resolved": false, - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "bundled": true, "dev": true }, "minipass": { "version": "2.2.4", - "resolved": false, - "integrity": "sha512-hzXIWWet/BzWhYs2b+u7dRHlruXhwdgvlTMDKC6Cb1U7ps6Ac6yQlR39xsbjWJE377YTCtKwIXIpJ5oP+j5y8g==", + "bundled": true, "dev": true, "requires": { "safe-buffer": "^5.1.1", @@ -3508,8 +4548,7 @@ }, "minizlib": { "version": "1.1.0", - "resolved": false, - "integrity": "sha512-4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3518,8 +4557,7 @@ }, "mkdirp": { "version": "0.5.1", - "resolved": false, - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "bundled": true, "dev": true, "requires": { "minimist": "0.0.8" @@ -3527,15 +4565,13 @@ }, "ms": { "version": "2.0.0", - "resolved": false, - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "bundled": true, "dev": true, "optional": true }, "needle": { "version": "2.2.0", - "resolved": false, - "integrity": "sha512-eFagy6c+TYayorXw/qtAdSvaUpEbBsDwDyxYFgLZ0lTojfH7K+OdBqAF7TAFwDokJaGpubpSGG0wO3iC0XPi8w==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3546,8 +4582,7 @@ }, "node-pre-gyp": { "version": "0.10.0", - "resolved": false, - "integrity": "sha512-G7kEonQLRbcA/mOoFoxvlMrw6Q6dPf92+t/l0DFSMuSlDoWaI9JWIyPwK0jyE1bph//CUEL65/Fz1m2vJbmjQQ==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3565,8 +4600,7 @@ }, "nopt": { "version": "4.0.1", - "resolved": false, - "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3576,15 +4610,13 @@ }, "npm-bundled": { "version": "1.0.3", - "resolved": false, - "integrity": "sha512-ByQ3oJ/5ETLyglU2+8dBObvhfWXX8dtPZDMePCahptliFX2iIuhyEszyFk401PZUNQH20vvdW5MLjJxkwU80Ow==", + "bundled": true, "dev": true, "optional": true }, "npm-packlist": { "version": "1.1.10", - "resolved": false, - "integrity": "sha512-AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3594,8 +4626,7 @@ }, "npmlog": { "version": "4.1.2", - "resolved": false, - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3607,21 +4638,18 @@ }, "number-is-nan": { "version": "1.0.1", - "resolved": false, - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "bundled": true, "dev": true }, "object-assign": { "version": "4.1.1", - "resolved": false, - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "bundled": true, "dev": true, "optional": true }, "once": { "version": "1.4.0", - "resolved": false, - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "bundled": true, "dev": true, "requires": { "wrappy": "1" @@ -3629,22 +4657,19 @@ }, "os-homedir": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "bundled": true, "dev": true, "optional": true }, "os-tmpdir": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "bundled": true, "dev": true, "optional": true }, "osenv": { "version": "0.1.5", - "resolved": false, - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3654,22 +4679,19 @@ }, "path-is-absolute": { "version": "1.0.1", - "resolved": false, - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "bundled": true, "dev": true, "optional": true }, "process-nextick-args": { "version": "2.0.0", - "resolved": false, - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "bundled": true, "dev": true, "optional": true }, "rc": { "version": "1.2.7", - "resolved": false, - "integrity": "sha512-LdLD8xD4zzLsAT5xyushXDNscEjB7+2ulnl8+r1pnESlYtlJtVSoCMBGr30eDRJ3+2Gq89jK9P9e4tCEH1+ywA==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3681,8 +4703,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": false, - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "bundled": true, "dev": true, "optional": true } @@ -3690,8 +4711,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": false, - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3706,8 +4726,7 @@ }, "rimraf": { "version": "2.6.2", - "resolved": false, - "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3716,49 +4735,42 @@ }, "safe-buffer": { "version": "5.1.1", - "resolved": false, - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "bundled": true, "dev": true }, "safer-buffer": { "version": "2.1.2", - "resolved": false, - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "bundled": true, "dev": true, "optional": true }, "sax": { "version": "1.2.4", - "resolved": false, - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "bundled": true, "dev": true, "optional": true }, "semver": { "version": "5.5.0", - "resolved": false, - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "bundled": true, "dev": true, "optional": true }, "set-blocking": { "version": "2.0.0", - "resolved": false, - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "bundled": true, "dev": true, "optional": true }, "signal-exit": { "version": "3.0.2", - "resolved": false, - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "bundled": true, "dev": true, "optional": true }, "string-width": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "bundled": true, "dev": true, "requires": { "code-point-at": "^1.0.0", @@ -3768,8 +4780,7 @@ }, "string_decoder": { "version": "1.1.1", - "resolved": false, - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3778,8 +4789,7 @@ }, "strip-ansi": { "version": "3.0.1", - "resolved": false, - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "bundled": true, "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -3787,15 +4797,13 @@ }, "strip-json-comments": { "version": "2.0.1", - "resolved": false, - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "bundled": true, "dev": true, "optional": true }, "tar": { "version": "4.4.1", - "resolved": false, - "integrity": "sha512-O+v1r9yN4tOsvl90p5HAP4AEqbYhx4036AGMm075fH9F8Qwi3oJ+v4u50FkT/KkvywNGtwkk0zRI+8eYm1X/xg==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3810,15 +4818,13 @@ }, "util-deprecate": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "bundled": true, "dev": true, "optional": true }, "wide-align": { "version": "1.1.2", - "resolved": false, - "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "bundled": true, "dev": true, "optional": true, "requires": { @@ -3827,14 +4833,12 @@ }, "wrappy": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "bundled": true, "dev": true }, "yallist": { "version": "3.0.2", - "resolved": false, - "integrity": "sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=", + "bundled": true, "dev": true } } @@ -3845,6 +4849,15 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "dev": true, + "requires": { + "globule": "^1.0.0" + } + }, "get-caller-file": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", @@ -3852,7 +4865,7 @@ }, "get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "resolved": "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" }, "get-value": { @@ -3870,6 +4883,47 @@ "assert-plus": "^1.0.0" } }, + "git-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/git-parse/-/git-parse-1.0.3.tgz", + "integrity": "sha512-LlGDePBQ9Lr/jsL3ULrnV8SQL8sk3cdScyc+vAk6jVLkHBOxdIj3JosNWemH2o9pNnGtcqukl+ym1Nl6k5jw0Q==", + "dev": true, + "requires": { + "babel-polyfill": "6.26.0", + "byline": "5.0.0", + "util.promisify": "1.0.0" + } + }, + "git-rev-sync": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/git-rev-sync/-/git-rev-sync-1.12.0.tgz", + "integrity": "sha1-RGhAbH5sO6TPRYeZnhrbKNnRr1U=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5", + "graceful-fs": "4.1.11", + "shelljs": "0.7.7" + }, + "dependencies": { + "graceful-fs": { + "version": "4.1.11", + "resolved": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true + }, + "shelljs": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz", + "integrity": "sha1-svXHfvlxSPS09uImguELuoZnz/E=", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + } + } + }, "git-up": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.0.tgz", @@ -3980,116 +5034,158 @@ "ini": "^1.3.4" } }, + "globule": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", + "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", + "dev": true, + "requires": { + "glob": "~7.1.1", + "lodash": "~4.17.10", + "minimatch": "~3.0.2" + } + }, "got": { - "version": "6.7.1", - "resolved": "http://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", "dev": true, "requires": { - "create-error-class": "^3.0.0", + "@sindresorhus/is": "^0.7.0", + "cacheable-request": "^2.1.1", + "decompress-response": "^3.3.0", "duplexer3": "^0.1.4", "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", + "into-stream": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "isurl": "^1.0.0-alpha5", "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" + "mimic-response": "^1.0.0", + "p-cancelable": "^0.4.0", + "p-timeout": "^2.0.1", + "pify": "^3.0.0", + "safe-buffer": "^5.1.1", + "timed-out": "^4.0.1", + "url-parse-lax": "^3.0.0", + "url-to-options": "^1.0.1" } }, "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" }, "graphql": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-0.13.2.tgz", - "integrity": "sha512-QZ5BL8ZO/B20VA8APauGBg3GyEgZ19eduvpLWoq5x7gMmWnHoy8rlQWPLmWgFvo1yNgjSEFMesmS4R6pPr7xog==", + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.0.2.tgz", + "integrity": "sha512-gUC4YYsaiSJT1h40krG3J+USGlwhzNTXSb4IOZljn9ag5Tj+RkoXrWp+Kh7WyE3t1NCfab5kzCuxBIvOMERMXw==", "dev": true, "requires": { - "iterall": "^1.2.1" + "iterall": "^1.2.2" } }, "graphql-code-generator": { - "version": "0.8.21", - "resolved": "https://registry.npmjs.org/graphql-code-generator/-/graphql-code-generator-0.8.21.tgz", - "integrity": "sha1-Nky5foI4MrI0jwv+3rlM5U/mRrE=", - "dev": true, - "requires": { - "@types/prettier": "1.10.0", - "commander": "2.15.0", - "glob": "7.1.2", - "graphql-codegen-compiler": "0.8.21", - "graphql-codegen-core": "0.8.21", - "graphql-codegen-generators": "0.8.21", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/graphql-code-generator/-/graphql-code-generator-0.13.0.tgz", + "integrity": "sha512-SM+K58Cg6jGL9pzOGWgRUJD4swQ+iOWEy/pyQ9BJxjv3d+eIV9uYwFwZ+flstRTvnu3spenTbjRE/mnw3jxHTQ==", + "dev": true, + "requires": { + "@graphql-modules/epoxy": "0.1.9", + "@types/babylon": "6.16.3", + "@types/is-glob": "4.0.0", + "@types/prettier": "1.13.2", + "@types/valid-url": "1.0.2", + "babel-types": "7.0.0-beta.3", + "babylon": "7.0.0-beta.47", + "chalk": "2.4.1", + "commander": "2.19.0", + "fb-watchman": "2.0.0", + "glob": "7.1.3", + "graphql-codegen-compiler": "0.13.0", + "graphql-codegen-core": "0.13.0", + "graphql-config": "2.2.1", + "graphql-import": "0.7.1", + "is-glob": "4.0.0", + "is-valid-path": "0.1.1", "mkdirp": "0.5.1", - "prettier": "1.11.1", - "request": "2.85.0", - "strip-comments": "0.4.4" + "ora": "3.0.0", + "pify": "4.0.1", + "prettier": "1.14.3", + "request": "2.88.0", + "valid-url": "1.0.9" }, "dependencies": { - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", "dev": true, "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "is-extglob": "^2.1.1" } }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, "prettier": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.11.1.tgz", - "integrity": "sha512-T/KD65Ot0PB97xTrG8afQ46x3oiVhnfGjGESSI9NWYcG92+OUPZKkwHqGWXH2t9jK1crnQjubECW0FuOth+hxw==", + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.14.3.tgz", + "integrity": "sha512-qZDVnCrnpsRJJq5nSsiHCE3BYMED2OtsI+cmzIzF1QIfqm5ALf8tEJcO27zV1gKNKRPdhjO0dNWnrzssDQ1tFg==", "dev": true } } }, "graphql-codegen-compiler": { - "version": "0.8.21", - "resolved": "https://registry.npmjs.org/graphql-codegen-compiler/-/graphql-codegen-compiler-0.8.21.tgz", - "integrity": "sha1-VscWq7dufDBcX1C0aYy2xqL8g48=", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/graphql-codegen-compiler/-/graphql-codegen-compiler-0.13.0.tgz", + "integrity": "sha512-e6EjF1OXyUZ+8uiMK17NKoVYmiSJgw61EpYK9uLJAQlOcCeLPskSxRSNQU8mtAiveAE1tMSXt9BfXrleQbDPqA==", "dev": true, "requires": { - "@types/handlebars": "4.0.36", + "@types/handlebars": "4.0.39", "change-case": "3.0.2", - "common-tags": "1.7.2", - "graphql-codegen-core": "0.8.21", - "graphql-codegen-generators": "0.8.21", - "handlebars": "4.0.11", - "moment": "2.21.0" + "common-tags": "1.8.0", + "graphql-codegen-core": "0.13.0", + "handlebars": "4.0.12", + "moment": "2.22.2" } }, "graphql-codegen-core": { - "version": "0.8.21", - "resolved": "https://registry.npmjs.org/graphql-codegen-core/-/graphql-codegen-core-0.8.21.tgz", - "integrity": "sha1-Cknq4nTFXvP7iC2eGJz1oVLvLu0=", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/graphql-codegen-core/-/graphql-codegen-core-0.13.0.tgz", + "integrity": "sha512-oM67vJvlt/azkbD4uy177duDuQkdpN9/PUOIcvvyGzjnsPkU7kB9uQ/vFK/+WwmxtYPzvm07PUnH2OkCssJtsQ==", "dev": true, "requires": { - "graphql-tag": "2.8.0", - "graphql-tools": "2.23.1" + "chalk": "2.4.1", + "change-case": "3.0.2", + "common-tags": "1.8.0", + "graphql-tag": "2.10.0", + "graphql-tools": "4.0.3", + "ts-log": "2.1.3", + "winston": "3.1.0" }, "dependencies": { - "graphql-tag": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.8.0.tgz", - "integrity": "sha1-Us3qB6hCFU7BGi6EDBG5d/m4Nc4=", - "dev": true + "graphql-tools": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.3.tgz", + "integrity": "sha512-NNZM0WSnVLX1zIMUxu7SjzLZ4prCp15N5L2T2ro02OVyydZ0fuCnZYRnx/yK9xjGWbZA0Q58yEO//Bv/psJWrg==", + "dev": true, + "requires": { + "apollo-link": "^1.2.3", + "apollo-utilities": "^1.0.1", + "deprecated-decorator": "^0.1.6", + "iterall": "^1.1.3", + "uuid": "^3.1.0" + } } } }, - "graphql-codegen-generators": { - "version": "0.8.21", - "resolved": "https://registry.npmjs.org/graphql-codegen-generators/-/graphql-codegen-generators-0.8.21.tgz", - "integrity": "sha1-ZG8dyVw0N8tMoDZedygtDq1WXO4=", + "graphql-codegen-typescript-template": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/graphql-codegen-typescript-template/-/graphql-codegen-typescript-template-0.13.0.tgz", + "integrity": "sha512-EYLd4v8toD+dpWHJsJliViaE52novhF9zbayFmY8IgLeHmYPVk2TfyS6CVvHmCoa0HTxOawvTY8a7UIgtnpw2w==", "dev": true }, "graphql-config": { @@ -4105,6 +5201,27 @@ "minimatch": "^3.0.4" } }, + "graphql-extensions": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.1.2.tgz", + "integrity": "sha512-A81kfGtOKG0/1sDQGm23u60bkTuk9VDof0SrQrz7yNpPLY48JF11b8+4LNlYfEBVvceDbLAs1KRfyLQskJjJSg==", + "dev": true, + "requires": { + "apollo-server-env": "2.0.2" + }, + "dependencies": { + "apollo-server-env": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.0.2.tgz", + "integrity": "sha512-LsSh2TSF1Sh+TnKxCv2To+UNTnoPpBGCXn6fPsmiNqVaBaSagfZEU/aaSu3ftMlmfXr4vXAfYNUDMKEi+7E6Bg==", + "dev": true, + "requires": { + "node-fetch": "^2.1.2", + "util.promisify": "^1.0.0" + } + } + } + }, "graphql-import": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/graphql-import/-/graphql-import-0.7.1.tgz", @@ -4113,6 +5230,14 @@ "requires": { "lodash": "^4.17.4", "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } } }, "graphql-request": { @@ -4131,12 +5256,12 @@ "dev": true }, "graphql-tools": { - "version": "2.23.1", - "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-2.23.1.tgz", - "integrity": "sha512-f85OdRuPcHvMhNqiotvgtzpx7RlY2pZW9UnmBu6AcooKVipWVyy0um9q17f78BBI+1UzwAMsfU9S6R38UGMjTQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.2.tgz", + "integrity": "sha512-GijRFaHmSbyVphtTb23wd6wxXNkct9usiXHl2v4cOFNdUWe3Qz7VqoNyOwINlff2nf01xO+lCkhVlay0svJqfQ==", "dev": true, "requires": { - "apollo-link": "^1.2.1", + "apollo-link": "^1.2.3", "apollo-utilities": "^1.0.1", "deprecated-decorator": "^0.1.6", "iterall": "^1.1.3", @@ -4150,15 +5275,23 @@ "dev": true }, "handlebars": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz", - "integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.12.tgz", + "integrity": "sha512-RhmTekP+FZL+XNhwS1Wf+bTTZpdLougwt5pcgA1tuz6Jcx0fpH/7z0qd71RKnZHBCxIRBHfBOnio4gViPemNzA==", "dev": true, "requires": { - "async": "^1.4.0", + "async": "^2.5.0", "optimist": "^0.6.1", - "source-map": "^0.4.4", - "uglify-js": "^2.6" + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } } }, "har-schema": { @@ -4168,12 +5301,12 @@ "dev": true }, "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", "dev": true, "requires": { - "ajv": "^5.1.0", + "ajv": "^6.5.5", "har-schema": "^2.0.0" } }, @@ -4215,12 +5348,27 @@ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true + }, "has-symbols": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", "dev": true }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "requires": { + "has-symbol-support-x": "^1.4.1" + } + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -4253,18 +5401,6 @@ } } }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", - "dev": true, - "requires": { - "boom": "4.x.x", - "cryptiles": "3.x.x", - "hoek": "4.x.x", - "sntp": "2.x.x" - } - }, "he": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", @@ -4290,23 +5426,6 @@ "boom": "7.x.x", "hoek": "6.x.x", "joi": "14.x.x" - }, - "dependencies": { - "boom": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/boom/-/boom-7.2.2.tgz", - "integrity": "sha512-IFUbOa8PS7xqmhIjpeStwT3d09hGkNYQ6aj2iELSTxcVs2u0aKn1NzhkdUQSzsRg1FVkj3uit3I6mXQCBixw+A==", - "dev": true, - "requires": { - "hoek": "6.x.x" - } - }, - "hoek": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-6.0.2.tgz", - "integrity": "sha512-0RGPLkyxpsMJVj/iOCaJaIWFEch988eUicJJpRiQ+Or1CMvBXcoZPlSx9FhreDWw4hxMYy8xgTEdlsYQDTnxWA==", - "dev": true - } } }, "helmet": { @@ -4349,6 +5468,39 @@ "platform": "1.3.5" } }, + "heroku-cli-util": { + "version": "8.0.10", + "resolved": "https://registry.npmjs.org/heroku-cli-util/-/heroku-cli-util-8.0.10.tgz", + "integrity": "sha512-NMcdnX3y2N+efhRGeZvBokmBtDdggtrgRb3pozhyrR2+5LmzKkDLONK/MfjvwrpAUP2MXPu8UkxJDnM/SAGlxA==", + "dev": true, + "requires": { + "@heroku-cli/color": "^1.1.3", + "ansi-escapes": "^3.1.0", + "ansi-styles": "^3.2.1", + "cardinal": "^2.0.1", + "chalk": "^2.4.1", + "co": "^4.6.0", + "got": "^8.3.1", + "heroku-client": "^3.0.6", + "lodash": "^4.17.10", + "netrc-parser": "^3.1.4", + "opn": "^3.0.3", + "strip-ansi": "^4.0.0", + "supports-color": "^5.4.0", + "tslib": "^1.9.0", + "tunnel-agent": "^0.6.0" + } + }, + "heroku-client": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/heroku-client/-/heroku-client-3.0.6.tgz", + "integrity": "sha512-1FKLb5ngGTMwUh67DPiYmv+TaKasTfZSYHno/Kx0goE6Fqutec3WILCHPmOfw9LTGnRjL9/Pmi5BNmu9GwNFNA==", + "dev": true, + "requires": { + "is-retry-allowed": "^1.0.0", + "tunnel-agent": "^0.6.0" + } + }, "hide-powered-by": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.0.0.tgz", @@ -4362,9 +5514,9 @@ "dev": true }, "hoek": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz", - "integrity": "sha512-QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-6.0.3.tgz", + "integrity": "sha512-TU6RyZ/XaQCTWRLrdqZZtZqwxUVr6PDMfi6MlWNURZ7A6czanQqX4pFE1mdOUQR9FdPCsZ0UzL8jI/izZ+eBSQ==", "dev": true }, "hosted-git-info": { @@ -4374,9 +5526,9 @@ "dev": true }, "hot-shots": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.1.tgz", - "integrity": "sha512-BYRHStjkxEFfr0aSVbeH7G4ByU07Ef344cJHU/6JKaTHIVfzZb5zIm/cjrWsZ7L13B9607608YG8FTsr098GDw==", + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.2.tgz", + "integrity": "sha512-ruHZvHaxZRVUCoCleiwwCcjdr9A2/Y97C7oc9LpyMg9ae39blHvsJJQQ0QtMtxKX+i4lig/7/BqZBjUUZPUp3A==", "dev": true }, "hpkp": { @@ -4391,6 +5543,25 @@ "integrity": "sha512-zXhh/DqgrTXJ7erTN6Fh5k/xjMhDGXCqdYN3wvxUvGUQvnxcFfUd8E+6vLg/nk3ss1TYMb+DhRl25fYABioTvA==", "dev": true }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "http-call": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/http-call/-/http-call-5.2.2.tgz", + "integrity": "sha512-DMEU+vvbrvt7n1BYPacbvtSwUmIgORP7HphTmKFqt1wBVeGi/+ADe7KkfyKAcnpa9HEoVaPWdfpOKy7fNeLdiw==", + "dev": true, + "requires": { + "content-type": "^1.0.4", + "debug": "^3.1.0", + "is-retry-allowed": "^1.1.0", + "is-stream": "^1.1.0", + "tunnel-agent": "^0.6.0" + } + }, "http-errors": { "version": "1.6.3", "resolved": "http://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", @@ -4434,6 +5605,12 @@ "debug": "^3.1.0" } }, + "hyperlinker": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz", + "integrity": "sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==", + "dev": true + }, "iconv-lite": { "version": "0.4.23", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", @@ -4461,6 +5638,16 @@ "integrity": "sha512-LWbJPZnidF8eczu7XmcnLBsumuyRBkpwIRPCZxlojouhBo5jEBO4toj6n7hMy6IxHU/c+MqDSWkvaTpPlMQcyA==", "dev": true }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, "import-lazy": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", @@ -4473,6 +5660,12 @@ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true }, + "indent-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", + "dev": true + }, "indexof": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", @@ -4524,6 +5717,45 @@ "string-width": "^2.1.0", "strip-ansi": "^4.0.0", "through": "^2.3.6" + }, + "dependencies": { + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + } } }, "interpret": { @@ -4532,6 +5764,16 @@ "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", "dev": true }, + "into-stream": { + "version": "3.1.0", + "resolved": "http://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "dev": true, + "requires": { + "from2": "^2.1.1", + "p-is-promise": "^1.1.0" + } + }, "invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", @@ -4560,12 +5802,23 @@ "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", "dev": true }, "is-binary-path": { @@ -4584,7 +5837,7 @@ }, "is-builtin-module": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", "dev": true, "requires": { @@ -4613,6 +5866,17 @@ "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-date-object": { @@ -4640,6 +5904,12 @@ } } }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", @@ -4676,6 +5946,32 @@ "is-path-inside": "^1.0.0" } }, + "is-invalid-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-invalid-path/-/is-invalid-path-0.1.0.tgz", + "integrity": "sha1-MHqFWzzxqTi0TqcNLGEQYFNxTzQ=", + "dev": true, + "requires": { + "is-glob": "^2.0.0" + }, + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true, + "requires": { + "is-extglob": "^1.0.0" + } + } + } + }, "is-lower-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", @@ -4704,6 +6000,17 @@ "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-obj": { @@ -4712,6 +6019,21 @@ "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", "dev": true }, + "is-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz", + "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=", + "dev": true + }, + "is-observable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", + "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", + "dev": true, + "requires": { + "symbol-observable": "^1.1.0" + } + }, "is-path-inside": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", @@ -4721,6 +6043,12 @@ "path-is-inside": "^1.0.1" } }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, "is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", @@ -4819,12 +6147,27 @@ "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", "dev": true }, + "is-valid-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", + "integrity": "sha1-EQ+f90w39mPh7HkV60UfLbk6yd8=", + "dev": true, + "requires": { + "is-invalid-path": "^0.1.0" + } + }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, "isarray": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", @@ -4846,14 +6189,6 @@ "dev": true, "requires": { "punycode": "2.x.x" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - } } }, "isexe": { @@ -4895,6 +6230,12 @@ "wordwrap": "^1.0.0" }, "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "http://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, "escodegen": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", @@ -4908,6 +6249,12 @@ "source-map": "~0.2.0" } }, + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", + "dev": true + }, "estraverse": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", @@ -4966,31 +6313,45 @@ } } }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "requires": { + "has-to-string-tag-x": "^1.2.0", + "is-object": "^1.0.1" + } + }, "iterall": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==", "dev": true }, + "java-properties": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-0.2.10.tgz", + "integrity": "sha512-CpKJh9VRNhS+XqZtg1UMejETGEiqwCGDC/uwPEEQwc2nfdbSm73SIE29TplG2gLYuBOOTNDqxzG6A9NtEPLt0w==", + "dev": true + }, "joi": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/joi/-/joi-14.0.4.tgz", - "integrity": "sha512-KUXRcinDUMMbtlOk7YLGHQvG73dLyf8bmgE+6sBTkdJbZpeGVGAlPXEHLiQBV7KinD/VLD5OA0EUgoTTfbRAJQ==", + "version": "14.0.6", + "resolved": "https://registry.npmjs.org/joi/-/joi-14.0.6.tgz", + "integrity": "sha512-mKXPSNYMG3taVBZemQj3pPOlMZGrnnu14JKAC6AHg6jJVX35L7oDk89ss1sHj+laDSEh3mD2PmeheI5k6Aw8nQ==", "dev": true, "requires": { "hoek": "6.x.x", "isemail": "3.x.x", "topo": "3.x.x" - }, - "dependencies": { - "hoek": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-6.0.2.tgz", - "integrity": "sha512-0RGPLkyxpsMJVj/iOCaJaIWFEch988eUicJJpRiQ+Or1CMvBXcoZPlSx9FhreDWw4hxMYy8xgTEdlsYQDTnxWA==", - "dev": true - } } }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, "js-yaml": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", @@ -4999,14 +6360,6 @@ "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" - }, - "dependencies": { - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - } } }, "jsbn": { @@ -5016,9 +6369,15 @@ "dev": true }, "jsesc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.1.tgz", - "integrity": "sha1-5CGiqOINawgZ3yiQj3glJrlt0f4=", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", "dev": true }, "json-parse-better-errors": { @@ -5034,9 +6393,9 @@ "dev": true }, "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify": { @@ -5084,15 +6443,21 @@ "resolved": "https://registry.npmjs.org/jssha/-/jssha-2.3.1.tgz", "integrity": "sha1-FHshJTaQNcpLL30hDcU58Amz3po=" }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", "dev": true, "requires": { - "is-buffer": "^1.1.5" + "json-buffer": "3.0.0" } }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + }, "kuler": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz", @@ -5111,13 +6476,6 @@ "package-json": "^4.0.0" } }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", - "dev": true, - "optional": true - }, "lcid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", @@ -5136,10 +6494,145 @@ "type-check": "~0.3.2" } }, + "listr": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.2.tgz", + "integrity": "sha512-vmaNJ1KlGuGWShHI35X/F8r9xxS0VTHh9GejVXwSN20fG5xpq3Jh4bJbnumoT6q5EDM/8/YP1z3YMtQbFmhuXw==", + "dev": true, + "requires": { + "@samverschueren/stream-to-observable": "^0.3.0", + "is-observable": "^1.1.0", + "is-promise": "^2.1.0", + "is-stream": "^1.1.0", + "listr-silent-renderer": "^1.1.1", + "listr-update-renderer": "^0.4.0", + "listr-verbose-renderer": "^0.4.0", + "p-map": "^1.1.1", + "rxjs": "^6.1.0" + } + }, + "listr-silent-renderer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", + "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", + "dev": true + }, + "listr-update-renderer": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.4.0.tgz", + "integrity": "sha1-NE2YDaLKLosUW6MFkI8yrj9MyKc=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "cli-truncate": "^0.2.1", + "elegant-spinner": "^1.0.1", + "figures": "^1.7.0", + "indent-string": "^3.0.0", + "log-symbols": "^1.0.2", + "log-update": "^1.0.2", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "listr-verbose-renderer": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz", + "integrity": "sha1-ggb0z21S3cWCfl/RSYng6WWTOjU=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "cli-cursor": "^1.0.2", + "date-fns": "^1.27.2", + "figures": "^1.7.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-5.1.0.tgz", + "integrity": "sha512-+ggO8OpTviHQ/zoyFxLJglsu1CylXUt1vpGa+mIUeesCkTC0G+JO6rdTS1/WcGBZDC7Nejo1aZ9MxbqflpmO6Q==", "dev": true, "requires": { "graceful-fs": "^4.1.2", @@ -5162,18 +6655,118 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true + }, "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", "dev": true }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", + "dev": true + }, + "lodash.template": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", + "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", + "dev": true, + "requires": { + "lodash._reinterpolate": "~3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", + "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", + "dev": true, + "requires": { + "lodash._reinterpolate": "~3.0.0" + } + }, "log": { "version": "1.4.0", "resolved": "http://registry.npmjs.org/log/-/log-1.4.0.tgz", "integrity": "sha1-S6HYkP3iSbAx3KA7w36q8yVlbxw=", "dev": true }, + "log-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "dev": true, + "requires": { + "chalk": "^1.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "log-update": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz", + "integrity": "sha1-GZKfZMQJPS0ucHWh2tivWcKWuNE=", + "dev": true, + "requires": { + "ansi-escapes": "^1.0.0", + "cli-cursor": "^1.0.2" + }, + "dependencies": { + "ansi-escapes": { + "version": "1.4.0", + "resolved": "http://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=", + "dev": true + } + } + }, "logform": { "version": "1.10.0", "resolved": "https://registry.npmjs.org/logform/-/logform-1.10.0.tgz", @@ -5195,10 +6788,10 @@ } } }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", + "long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", "dev": true }, "lower-case": { @@ -5354,72 +6947,6 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.2" - }, - "dependencies": { - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } } }, "mime": { @@ -5448,6 +6975,12 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, "minimatch": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", @@ -5458,7 +6991,7 @@ }, "minimist": { "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, "mixin-deep": { @@ -5484,7 +7017,7 @@ }, "mkdirp": { "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", "requires": { "minimist": "0.0.8" @@ -5511,7 +7044,7 @@ "dependencies": { "commander": { "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "resolved": "http://registry.npmjs.org/commander/-/commander-2.15.1.tgz", "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==", "dev": true }, @@ -5541,9 +7074,9 @@ } }, "moment": { - "version": "2.21.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz", - "integrity": "sha512-TCZ36BjURTeFTM/CwRcViQlfkMvL1/vFISuNLO5GkcVm1+QHfbSiNqZuWeMFjj1/3+uAjXswgRk30j1kkLYJBQ==", + "version": "2.22.2", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz", + "integrity": "sha1-PCV/mDn8DpP/UxSWMiOeuQeD/2Y=", "dev": true }, "ms": { @@ -5607,83 +7140,57 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" + } + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", + "dev": true + }, + "netrc-parser": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/netrc-parser/-/netrc-parser-3.1.6.tgz", + "integrity": "sha512-lY+fmkqSwntAAjfP63jB4z5p5WbuZwyMCD3pInT7dpHU/Gc6Vv90SAC6A0aNiqaRGHiuZFBtiwu+pu8W/Eyotw==", + "dev": true, + "requires": { + "debug": "^3.1.0", + "execa": "^0.10.0" }, "dependencies": { - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "execa": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", + "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==", "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "cross-spawn": "^6.0.0", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true } } }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true - }, "next-tick": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "resolved": "http://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", "dev": true }, @@ -5716,12 +7223,26 @@ "requires": { "clone": "2.x", "lodash": "4.x" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + } } }, "node-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.1.tgz", - "integrity": "sha512-ObXBpNCD3A/vYQiQtEWl7DuqjAXjfptYFuGHLdPl5U19/6kJuZV+8uMHLrkj3wJrJoyfg4nhgyFixZdaZoAiEQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz", + "integrity": "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==", + "dev": true + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, "node-version": { @@ -5788,10 +7309,15 @@ } }, "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", - "dev": true + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0", + "query-string": "^5.0.1", + "sort-keys": "^2.0.0" + } }, "npm-run-all": { "version": "4.1.3", @@ -5810,15 +7336,6 @@ "string.prototype.padend": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, "cross-spawn": { "version": "6.0.5", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", @@ -5848,9 +7365,9 @@ "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", "dev": true }, "object-assign": { @@ -5868,6 +7385,26 @@ "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "object-keys": { @@ -5885,6 +7422,16 @@ "isobject": "^3.0.0" } }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + } + }, "object.pick": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", @@ -5924,12 +7471,18 @@ "dev": true }, "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "version": "1.1.0", + "resolved": "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=", + "dev": true + }, + "opn": { + "version": "3.0.3", + "resolved": "http://registry.npmjs.org/opn/-/opn-3.0.3.tgz", + "integrity": "sha1-ttmec5n3jWXDuq/+8fsojpuFJDo=", "dev": true, "requires": { - "mimic-fn": "^1.0.0" + "object-assign": "^4.0.1" } }, "optimism": { @@ -5973,6 +7526,59 @@ } } }, + "ora": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-3.0.0.tgz", + "integrity": "sha512-LBS97LFe2RV6GJmXBi6OKcETKyklHNMV0xw7BtsVn2MlsgsydyZetSCbCANr+PFLmDyv4KV88nn0eCKza665Mg==", + "dev": true, + "requires": { + "chalk": "^2.3.1", + "cli-cursor": "^2.1.0", + "cli-spinners": "^1.1.0", + "log-symbols": "^2.2.0", + "strip-ansi": "^4.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "^2.0.1" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + } + } + }, "ordered-read-streams": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", @@ -6040,11 +7646,23 @@ "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "http://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true + }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" }, + "p-is-promise": { + "version": "1.1.0", + "resolved": "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "dev": true + }, "p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", @@ -6061,6 +7679,21 @@ "p-limit": "^1.1.0" } }, + "p-map": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz", + "integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==", + "dev": true + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "requires": { + "p-finally": "^1.0.0" + } + }, "p-try": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", @@ -6076,6 +7709,42 @@ "registry-auth-token": "^3.0.1", "registry-url": "^3.0.3", "semver": "^5.1.0" + }, + "dependencies": { + "got": { + "version": "6.7.1", + "resolved": "http://registry.npmjs.org/got/-/got-6.7.1.tgz", + "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "dev": true, + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "dev": true, + "requires": { + "prepend-http": "^1.0.1" + } + } } }, "pad": { @@ -6093,12 +7762,6 @@ "no-case": "^2.2.0" } }, - "parse-code-context": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/parse-code-context/-/parse-code-context-0.2.2.tgz", - "integrity": "sha1-FEuK+3IZSC1+iMHranZVlvOmrA0=", - "dev": true - }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -6129,6 +7792,14 @@ "normalize-url": "^3.3.0", "parse-path": "^4.0.0", "protocols": "^1.4.0" + }, + "dependencies": { + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true + } } }, "parseurl": { @@ -6196,6 +7867,31 @@ "integrity": "sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ=", "dev": true }, + "password-prompt": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.0.7.tgz", + "integrity": "sha1-jid0jTQAvJyRQNWt5wXft6632Ro=", + "dev": true, + "requires": { + "ansi-escapes": "^3.1.0", + "cross-spawn": "^6.0.5" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + } + } + }, "path-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", @@ -6218,7 +7914,7 @@ }, "path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-is-inside": { @@ -6261,7 +7957,7 @@ }, "pause-stream": { "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "resolved": "http://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", "dev": true, "requires": { @@ -6297,6 +7993,12 @@ "mkdirp": "0.5.x" }, "dependencies": { + "async": { + "version": "1.5.2", + "resolved": "http://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -6335,6 +8037,14 @@ "requires": { "core-js": "^2.0.0", "power-assert-context-traversal": "^1.2.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-context-reducer-ast": { @@ -6348,6 +8058,14 @@ "core-js": "^2.0.0", "espurify": "^1.6.0", "estraverse": "^4.2.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-context-traversal": { @@ -6358,6 +8076,14 @@ "requires": { "core-js": "^2.0.0", "estraverse": "^4.1.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-formatter": { @@ -6373,6 +8099,14 @@ "power-assert-renderer-comparison": "^1.0.7", "power-assert-renderer-diagram": "^1.0.7", "power-assert-renderer-file": "^1.0.7" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-renderer-assertion": { @@ -6402,6 +8136,14 @@ "power-assert-renderer-base": "^1.1.1", "stringifier": "^1.3.0", "type-name": "^2.0.1" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-renderer-diagram": { @@ -6414,6 +8156,14 @@ "power-assert-renderer-base": "^1.1.1", "power-assert-util-string-width": "^1.2.0", "stringifier": "^1.3.0" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, "power-assert-renderer-file": { @@ -6441,15 +8191,21 @@ "dev": true }, "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", "dev": true }, "prettier": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.15.1.tgz", - "integrity": "sha512-4rgV2hyc/5Pk0XHH4VjJWHRgVjgRbpMfLQjREAhHBtyW1UvTFkjJEsueGYNYYZd9mn97K+1qv0EBwm11zoaSgA==", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.15.2.tgz", + "integrity": "sha512-YgPLFFA0CdKL4Eg2IHtUSjzj/BWgszDHiNQAe0VAIBse34148whfdzLagRL+QiKS+YfK5ftB6X4v/MBw8yCoug==", + "dev": true + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", "dev": true }, "process-nextick-args": { @@ -6505,6 +8261,27 @@ } } }, + "protobufjs": { + "version": "6.8.8", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.8.tgz", + "integrity": "sha512-AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==", + "dev": true, + "requires": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/long": "^4.0.0", + "@types/node": "^10.1.0", + "long": "^4.0.0" + } + }, "protocols": { "version": "1.4.6", "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.6.tgz", @@ -6535,6 +8312,12 @@ "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" }, + "psl": { + "version": "1.1.29", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", + "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==", + "dev": true + }, "pstree.remy": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.0.tgz", @@ -6545,9 +8328,9 @@ } }, "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, "requires": { "end-of-stream": "^1.1.0", @@ -6563,12 +8346,24 @@ "duplexify": "^3.6.0", "inherits": "^2.0.3", "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } } }, "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "qs": { @@ -6577,6 +8372,17 @@ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", "dev": true }, + "query-string": { + "version": "5.1.1", + "resolved": "http://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "requires": { + "decode-uri-component": "^0.2.0", + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, "random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", @@ -6630,11 +8436,25 @@ "load-json-file": "^4.0.0", "normalize-package-data": "^2.3.2", "path-type": "^3.0.0" + }, + "dependencies": { + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + } } }, "readable-stream": { "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { "core-util-is": "~1.0.0", @@ -6686,6 +8506,32 @@ } } }, + "recast": { + "version": "0.15.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.15.5.tgz", + "integrity": "sha512-nkAYNqarh73cMWRKFiPQ8I9dOLFvFk6SnG8u/LUlOYfArDOD/EjsVRAs860TlBLrpxqAXHGET/AUAVjdEymL5w==", + "dev": true, + "requires": { + "ast-types": "0.11.5", + "esprima": "~4.0.0", + "private": "~0.1.5", + "source-map": "~0.6.1" + }, + "dependencies": { + "ast-types": { + "version": "0.11.5", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.11.5.tgz", + "integrity": "sha512-oJjo+5e7/vEc2FBK8gUalV0pba4L3VdBIs2EKhOLHLcOd2FgQIVQN9xb0eZ9IjEWyAL7vq6fGJxOvVvdCHNyMw==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, "rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", @@ -6695,6 +8541,24 @@ "resolve": "^1.1.6" } }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "dev": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "redeyed": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", + "integrity": "sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs=", + "dev": true, + "requires": { + "esprima": "~4.0.0" + } + }, "referrer-policy": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.1.0.tgz", @@ -6702,9 +8566,9 @@ "dev": true }, "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=", "dev": true }, "regex-not": { @@ -6715,27 +8579,6 @@ "requires": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } } }, "registry-auth-token": { @@ -6776,33 +8619,31 @@ "dev": true }, "request": { - "version": "2.85.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.85.0.tgz", - "integrity": "sha512-8H7Ehijd4js+s6wuVPLjwORxD4zeuyjYugprdOXlPSqaApmL/QOy+EB/beICHVCHkGMKNh5rvihb5ov+IDw4mg==", + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", "dev": true, "requires": { "aws-sign2": "~0.7.0", - "aws4": "^1.6.0", + "aws4": "^1.8.0", "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.1", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", "forever-agent": "~0.6.1", - "form-data": "~2.3.1", - "har-validator": "~5.0.3", - "hawk": "~6.0.2", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", "http-signature": "~1.2.0", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.17", - "oauth-sign": "~0.8.2", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", "performance-now": "^2.1.0", - "qs": "~6.5.1", - "safe-buffer": "^5.1.1", - "stringstream": "~0.0.5", - "tough-cookie": "~2.3.3", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", "tunnel-agent": "^0.6.0", - "uuid": "^3.1.0" + "uuid": "^3.3.2" } }, "require-directory": { @@ -6825,9 +8666,9 @@ } }, "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", "dev": true }, "resolve-url": { @@ -6836,14 +8677,23 @@ "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", "dev": true }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", "dev": true, "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" + "exit-hook": "^1.0.0", + "onetime": "^1.0.0" } }, "ret": { @@ -6858,16 +8708,6 @@ "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", "dev": true }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "dev": true, - "optional": true, - "requires": { - "align-text": "^0.1.1" - } - }, "rimraf": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", @@ -6902,7 +8742,7 @@ }, "safe-regex": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "resolved": "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, "requires": { @@ -7011,6 +8851,17 @@ "is-extendable": "^0.1.1", "is-plain-object": "^2.0.3", "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, "setprototypeof": { @@ -7058,9 +8909,9 @@ } }, "shelljs": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz", - "integrity": "sha512-pRXeNrCA2Wd9itwhvLp5LZQvPJ0wU6bcjaTMywHHGX5XWhVN2nzSu7WV0q+oUY7mGK3mgSkDDzP3MgjqdyIgbQ==", + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz", + "integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==", "dev": true, "requires": { "glob": "^7.0.0", @@ -7080,8 +8931,22 @@ "dev": true, "requires": { "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } } }, + "slice-ansi": { + "version": "0.0.4", + "resolved": "http://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "dev": true + }, "snake-case": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz", @@ -7113,14 +8978,26 @@ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "ms": "2.0.0" + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } } } }, @@ -7172,12 +9049,6 @@ "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true } } }, @@ -7188,25 +9059,33 @@ "dev": true, "requires": { "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", "dev": true, "requires": { - "hoek": "4.x.x" + "is-plain-obj": "^1.0.0" } }, "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true }, "source-map-resolve": { "version": "0.5.2", @@ -7272,9 +9151,9 @@ } }, "spdx-license-ids": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz", - "integrity": "sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz", + "integrity": "sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg==", "dev": true }, "split": { @@ -7293,27 +9172,6 @@ "dev": true, "requires": { "extend-shallow": "^3.0.0" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } } }, "sprintf-js": { @@ -7351,6 +9209,17 @@ "requires": { "define-property": "^0.2.5", "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } } }, "statuses": { @@ -7437,6 +9306,12 @@ } } }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -7471,14 +9346,16 @@ "core-js": "^2.0.0", "traverse": "^0.6.6", "type-name": "^2.0.1" + }, + "dependencies": { + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==", + "dev": true + } } }, - "stringstream": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz", - "integrity": "sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==", - "dev": true - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", @@ -7493,19 +9370,9 @@ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, - "strip-comments": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-0.4.4.tgz", - "integrity": "sha1-ucqvxP6QX5bAkd+J+achXyqmKcY=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "extract-comments": "^0.10.1" - } - }, "strip-eof": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "resolved": "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" }, "strip-json-comments": { @@ -7514,6 +9381,30 @@ "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true }, + "subscriptions-transport-ws": { + "version": "0.9.15", + "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.15.tgz", + "integrity": "sha512-f9eBfWdHsePQV67QIX+VRhf++dn1adyC/PZHP6XI5AfKnZ4n0FW+v5omxwdHVpd4xq2ZijaHEcmlQrhBY79ZWQ==", + "dev": true, + "requires": { + "backo2": "^1.0.2", + "eventemitter3": "^3.1.0", + "iterall": "^1.2.1", + "symbol-observable": "^1.0.4", + "ws": "^5.2.0" + }, + "dependencies": { + "ws": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "dev": true, + "requires": { + "async-limiter": "~1.0.0" + } + } + } + }, "supervisor": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/supervisor/-/supervisor-0.12.0.tgz", @@ -7529,6 +9420,24 @@ "has-flag": "^3.0.0" } }, + "supports-hyperlinks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz", + "integrity": "sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw==", + "dev": true, + "requires": { + "has-flag": "^2.0.0", + "supports-color": "^5.0.0" + }, + "dependencies": { + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", + "dev": true + } + } + }, "swap-case": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz", @@ -7562,16 +9471,16 @@ }, "through": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "resolved": "http://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", "dev": true }, "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "requires": { - "readable-stream": "^2.1.5", + "readable-stream": "~2.3.6", "xtend": "~4.0.1" }, "dependencies": { @@ -7582,7 +9491,7 @@ }, "readable-stream": { "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "requires": { "core-util-is": "~1.0.0", @@ -7672,6 +9581,17 @@ "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "to-regex": { @@ -7684,72 +9604,6 @@ "extend-shallow": "^3.0.2", "regex-not": "^1.0.2", "safe-regex": "^1.1.0" - }, - "dependencies": { - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } } }, "to-regex-range": { @@ -7769,14 +9623,6 @@ "dev": true, "requires": { "hoek": "6.x.x" - }, - "dependencies": { - "hoek": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-6.0.2.tgz", - "integrity": "sha512-0RGPLkyxpsMJVj/iOCaJaIWFEch988eUicJJpRiQ+Or1CMvBXcoZPlSx9FhreDWw4hxMYy8xgTEdlsYQDTnxWA==", - "dev": true - } } }, "touch": { @@ -7800,12 +9646,21 @@ } }, "tough-cookie": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", - "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", "dev": true, "requires": { + "psl": "^1.1.24", "punycode": "^1.4.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } } }, "traverse": { @@ -7820,6 +9675,12 @@ "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==", "dev": true }, + "treeify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz", + "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==", + "dev": true + }, "trim-right": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", @@ -7832,6 +9693,12 @@ "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==", "dev": true }, + "ts-log": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ts-log/-/ts-log-2.1.3.tgz", + "integrity": "sha512-VIk9+hzE80UjhJcSANst8LGRBpfNh32y9d3LVDMtEqcEb1x0hB71IO0aObNcLJ5VpK5tKeF9uI4pwEco03SkwA==", + "dev": true + }, "ts-node": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-7.0.1.tgz", @@ -7850,7 +9717,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true } @@ -7891,6 +9758,12 @@ "tslib": "^1.8.1" } }, + "tty": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tty/-/tty-1.0.1.tgz", + "integrity": "sha1-5ECayYsN0cULWf846G6sPwdk7kU=", + "dev": true + }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", @@ -7954,14 +9827,6 @@ "shelljs": "^0.8.2", "typedoc-default-themes": "^0.5.0", "typescript": "3.1.x" - }, - "dependencies": { - "@types/handlebars": { - "version": "4.0.39", - "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.0.39.tgz", - "integrity": "sha512-vjaS7Q0dVqFp85QhyPSZqDKnTTCemcSHNHFvDdalO1s0Ifz5KuE64jQD5xoUkfdWwF4WpqdJEl7LsWH8rzhKJA==", - "dev": true - } } }, "typedoc-default-themes": { @@ -7977,72 +9842,32 @@ "dev": true }, "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "version": "3.4.9", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.9.tgz", + "integrity": "sha512-8CJsbKOtEbnJsTyv6LE6m6ZKniqMiFWmm9sRbopbkGs3gMPPfd3Fh8iIA4Ykv5MgaTbqHr4BaoGLJLZNhsrW1Q==", "dev": true, "optional": true, "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" + "commander": "~2.17.1", + "source-map": "~0.6.1" }, "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", + "commander": { + "version": "2.17.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", + "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", "dev": true, "optional": true }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "dev": true, - "optional": true, - "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" - } - }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true, - "optional": true - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "optional": true - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "dev": true, - "optional": true, - "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" - } } } }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "dev": true, - "optional": true - }, "uid-safe": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", @@ -8090,6 +9915,15 @@ "set-value": "^0.4.3" }, "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, "set-value": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", @@ -8245,6 +10079,15 @@ "upper-case": "^1.1.1" } }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -8252,12 +10095,12 @@ "dev": true }, "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", "dev": true, "requires": { - "prepend-http": "^1.0.1" + "prepend-http": "^2.0.0" } }, "url-template": { @@ -8266,6 +10109,12 @@ "integrity": "sha1-/FZaPMy/93MMd19WQflVV5FDnyE=", "dev": true }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "dev": true + }, "use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", @@ -8283,6 +10132,16 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", @@ -8295,6 +10154,12 @@ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", "dev": true }, + "valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=", + "dev": true + }, "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -8322,6 +10187,53 @@ "extsprintf": "^1.2.0" } }, + "vscode-jsonrpc": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz", + "integrity": "sha512-perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg==", + "dev": true + }, + "vscode-languageserver": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-5.1.0.tgz", + "integrity": "sha512-CIsrgx2Y5VHS317g/HwkSTWYBIQmy0DwEyZPmB2pEpVOhYFwVsYpbiJwHIIyLQsQtmRaO4eA2xM8KPjNSdXpBw==", + "dev": true, + "requires": { + "vscode-languageserver-protocol": "3.13.0", + "vscode-uri": "^1.0.6" + } + }, + "vscode-languageserver-protocol": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.13.0.tgz", + "integrity": "sha512-2ZGKwI+P2ovQll2PGAp+2UfJH+FK9eait86VBUdkPd9HRlm8e58aYT9pV/NYanHOcp3pL6x2yTLVCFMcTer0mg==", + "dev": true, + "requires": { + "vscode-jsonrpc": "^4.0.0", + "vscode-languageserver-types": "3.13.0" + } + }, + "vscode-languageserver-types": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.13.0.tgz", + "integrity": "sha512-BnJIxS+5+8UWiNKCP7W3g9FlE7fErFw0ofP5BXJe7c2tl0VeWh+nNHFbwAS2vmVC4a5kYxHBjRy0UeOtziemVA==", + "dev": true + }, + "vscode-uri": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz", + "integrity": "sha512-sLI2L0uGov3wKVb9EB+vIQBl9tVP90nqRvxSoJ35vI3NjxE8jfsE5DSOhWgSunHSZmKS4OCi2jrtfxK7uyp2ww==", + "dev": true + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, "whatwg-fetch": { "version": "2.0.4", "resolved": "http://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", @@ -8359,13 +10271,6 @@ "semver": "^5.0.1" } }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", - "dev": true, - "optional": true - }, "winston": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/winston/-/winston-3.1.0.tgz", @@ -8383,15 +10288,6 @@ "winston-transport": "^4.2.0" }, "dependencies": { - "async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", - "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", - "dev": true, - "requires": { - "lodash": "^4.17.10" - } - }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -8474,7 +10370,7 @@ }, "wrap-ansi": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "requires": { "string-width": "^1.0.1", @@ -8506,7 +10402,7 @@ }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { "ansi-regex": "^2.0.0" @@ -8568,7 +10464,7 @@ }, "yargs": { "version": "11.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz", + "resolved": "http://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz", "integrity": "sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A==", "requires": { "cliui": "^4.0.0", @@ -8603,6 +10499,12 @@ "camelcase": "^4.1.0" } }, + "yarn": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/yarn/-/yarn-1.12.3.tgz", + "integrity": "sha512-8f5rWNDvkhAmCxmn8C0LsNWMxTYVk4VGKiq0sIB6HGZjaZTHsGIH87SUmVDUEd2Wk54bqKoUlbVWgQFCQhRkVw==", + "dev": true + }, "yn": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/yn/-/yn-2.0.0.tgz", @@ -8610,9 +10512,9 @@ "dev": true }, "zen-observable": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.10.tgz", - "integrity": "sha512-UXEh0ekA/QWYI2NkLHc5IH0V1FstIN4qGVlVvq0DQAS3oR72mofYHkjJ2f4ysMKRAziwnACzg3c0ZuG+SMDu8w==", + "version": "0.8.11", + "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.11.tgz", + "integrity": "sha512-N3xXQVr4L61rZvGMpWe8XoCGX8vhU35dPyQ4fm5CY/KDlG0F75un14hjbckPXTDuKUY6V0dqR2giT6xN8Y4GEQ==", "dev": true }, "zen-observable-ts": { diff --git a/package.json b/package.json index 78661560e..009d0a2d2 100644 --- a/package.json +++ b/package.json @@ -42,19 +42,17 @@ "stack-trace": "0.0.10" }, "peerDependencies": { - "@atomist/automation-client": ">=1.1.0", + "@atomist/automation-client": ">=1.0.1", "@atomist/slack-messages": ">=1.0.1" }, "devDependencies": { - "@atomist/automation-client": "1.1.0-master.20181110132646", + "@atomist/automation-client": "1.1.0-master.20181113184417", "@atomist/slack-messages": "^1.0.1", "@types/mocha": "^5.2.5", "@types/power-assert": "^1.4.29", - "apollo-codegen": "^0.20.2", "axios-mock-adapter": "^1.15.0", "barrelsby": "1.0.2", "espower-typescript": "^9.0.0", - "graphql-code-generator": "^0.8.13", "istanbul": "^0.4.5", "mocha": "^5.2.0", "nodemon": "^1.18.6", @@ -74,9 +72,9 @@ "scripts": { "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test", "build": "run-s compile test lint doc", - "clean": "run-p clean:compile clean:test clean:doc clean:run", + "clean": "run-p clean:compile clean:test clean:doc clean:run clean:barrels", "clean:barrels": "rimraf index.ts", - "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts", + "clean:compile": "rimraf git-info.json build \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts", "clean:dist": "run-s clean clean:npm", "clean:doc": "rimraf doc", "clean:npm": "rimraf node_modules", @@ -84,18 +82,18 @@ "clean:test": "rimraf .nyc_output coverage", "compile": "run-s gql:gen compile:barrels compile:ts", "compile:barrels": "run-s clean:barrels compile:barrels:create", - "compile:barrels:create": "barrelsby --directory . --location top --include \"/lib/(?:api(?:-helper)?|spi|typings)/\" --exclude \"/node_modules/\" --exclude \"\\.d\\.ts\\$\" --exclude \"(?:(?:build|deploy)Dsl)\" --exclude \"Projects?OperationRegistration\"", + "compile:barrels:create": "barrelsby --directory . --location top --include \"/lib/(?:api(?:-helper)?|spi|typings)/\" --exclude \"/node_modules/\" --exclude \"\\.d\\.ts\\$\" --exclude \"Projects?OperationRegistration\"", "compile:ts": "tsc --project .", "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib", "fmt": "run-s fmt:gql", "fmt:gql": "prettier --write \"lib/graphql/**/*.graphql\"", "gql:gen": "atm-gql-gen", "lint": "run-p lint:ts lint:gql", - "lint:ts": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"", + "lint:ts": "tslint --config tslint.json --format verbose --project .", "lint:gql": "prettier --list-different \"lib/graphql/**/*.graphql\"", "lint:fix": "run-p lint:ts:fix fmt:gql", "lint:ts:fix": "npm run lint:ts -- --fix", - "test": "mocha --require espower-typescript/guess --require source-map-support/register \"test/**/*.test.ts\"", + "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"", "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"", "typedoc": "npm run doc" }, diff --git a/schema.json b/schema.json deleted file mode 100644 index a8ea2f39c..000000000 --- a/schema.json +++ /dev/null @@ -1,111925 +0,0 @@ -{ - "data": { - "__schema": { - "queryType": { - "name": "QueryType" - }, - "mutationType": { - "name": "MutationType" - }, - "subscriptionType": { - "name": "SubscriptionType" - }, - "types": [ - { - "kind": "OBJECT", - "name": "QueryType", - "description": null, - "fields": [ - { - "name": "Issue", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Comment", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Comment", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "commentIds is list variant of commentId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "paths", - "description": "paths is list variant of path of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "positions", - "description": "positions is list variant of position of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentTypes", - "description": "commentTypes is list variant of commentType of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Label", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Label", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", - "description": "defaults is list variant of default of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", - "description": "colors is list variant of color of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Repo", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Commit", - "description": null, - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Push", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Push", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchs", - "description": "branchs is list variant of branch of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Build", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Workflow", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Workflow", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config", - "description": "config of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "configs", - "description": "configs is list variant of config of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WorkflowOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Branch", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DeletedBranch", - "description": null, - "args": [ - { - "name": "id", - "description": "id of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DeletedBranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeletedBranch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatId", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatChannel", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PullRequest", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Org", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCMId", - "description": null, - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubId", - "description": null, - "args": [ - { - "name": "login", - "description": "login of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tag", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Tag", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", - "description": "refs is list variant of ref of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TagOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "K8Pod", - "description": null, - "args": [ - { - "name": "name", - "description": "name of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "phases", - "description": "phases is list variant of phase of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseNames", - "description": "baseNames is list variant of baseName of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "namespaces", - "description": "namespaces is list variant of namespace of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "specsJSONs", - "description": "specsJSONs is list variant of specsJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "envJSONs", - "description": "envJSONs is list variant of envJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "metadataJSONs", - "description": "metadataJSONs is list variant of metadataJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOffs", - "description": "containersCrashLoopBackOffs is list variant of containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8PodOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "K8Container", - "description": null, - "args": [ - { - "name": "name", - "description": "name of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason", - "description": "stateReason of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready", - "description": "ready of K8Container", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "restartCount of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", - "description": "containerID of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerJSONs", - "description": "containerJSONs is list variant of containerJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "stateReasons", - "description": "stateReasons is list variant of stateReason of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "readys", - "description": "readys is list variant of ready of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "restartCounts", - "description": "restartCounts is list variant of restartCount of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerIDs", - "description": "containerIDs is list variant of containerID of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DockerImage", - "description": null, - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ImageLinked", - "description": null, - "args": [ - { - "name": "timestamp", - "description": "timestamp of ImageLinked", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of ImageLinked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ImageLinkedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImageLinked", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Release", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Release", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReleaseOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Release", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HerokuApp", - "description": null, - "args": [ - { - "name": "app", - "description": "app of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "user of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "appId of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release", - "description": "release of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps", - "description": "apps is list variant of app of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "users", - "description": "users is list variant of user of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "appIds", - "description": "appIds is list variant of appId of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "releases", - "description": "releases is list variant of release of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_HerokuAppOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HerokuApp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Application", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Application", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatTeam", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Person", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Status", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Status", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl", - "description": "targetUrl of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context", - "description": "context of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "targetUrls", - "description": "targetUrls is list variant of targetUrl of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "contexts", - "description": "contexts is list variant of context of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Email", - "description": null, - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fingerprint", - "description": null, - "args": [ - { - "name": "name", - "description": "name of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "sha of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Fingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ParentImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ParentImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ParentImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PushImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PushImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of PushImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of PushImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PushImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PullRequestImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubProvider", - "description": null, - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCMProvider", - "description": null, - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UserJoinedChannel", - "description": null, - "args": [ - { - "name": "id", - "description": "id of UserJoinedChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of UserJoinedChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_UserJoinedChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserJoinedChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubOrgWebhook", - "description": null, - "args": [ - { - "name": "id", - "description": "id of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of GitHubOrgWebhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubOrgWebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubOrgWebhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Webhook", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Webhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of Webhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of Webhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChannelLink", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChannelLink", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChannelLink", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Review", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Review", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "reviewId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Review", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "submittedAt of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reviewIds", - "description": "reviewIds is list variant of reviewId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "submittedAts", - "description": "submittedAts is list variant of submittedAt of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Card", - "description": "Auto-generated query for Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Card" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this Card", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "shortTitle", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "UserNotification", - "description": "Auto-generated query for UserNotification", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserNotification" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this UserNotification", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "login", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "contentType", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "body", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "Notification", - "description": "Auto-generated query for Notification", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Notification" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this Notification", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "contentType", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "body", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmGoal", - "description": "Auto-generated query for SdmGoal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoal" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this SdmGoal", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "approvelRequired", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "environment", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "error", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "externalUrl", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "goalSet", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "goalSetId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "retryFeasible", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "uniqueName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "url", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmBuildIdentifier", - "description": "Auto-generated query for SdmBuildIdentifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmBuildIdentifier" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this SdmBuildIdentifier", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "identifier", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmDeployEnablement", - "description": "Auto-generated query for SdmDeployEnablement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this SdmDeployEnablement", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmVersion", - "description": "Auto-generated query for SdmVersion", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmVersion" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this SdmVersion", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "version", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "AtomistLog", - "description": "Auto-generated query for AtomistLog", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistLog" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this AtomistLog", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "timestamp", - "description": "Status timestamp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "team_id", - "description": "Team ID for which log message is produced", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "level", - "description": "Log message level: debug, info, warn, error, fatal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "message", - "description": "Log message", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SentryAlert", - "description": "Auto-generated query for SentryAlert", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SentryAlert" - } - }, - "args": [ - { - "name": "id", - "description": "The ID of this SentryAlert", - "type": { - "kind": "SCALAR", - "name": "ID" - } - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "defaultValue": null, - "type": { - "kind": "ENUM", - "name": "_Ordering" - } - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "culprit", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "level", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "message", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "project", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "project_name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "url", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "commitBySha", - "description": "Find a commit by sha", - "type": { - "kind": "OBJECT", - "name": "Commit" - }, - "args": [ - { - "name": "sha", - "description": "The sha of the commit", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "pushBySha", - "description": "Find a Push using after-sha and branch", - "type": { - "kind": "OBJECT", - "name": "Push" - }, - "args": [ - { - "name": "branchName", - "description": "The branch of the Push", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "afterSha", - "description": "The after-sha of the Push", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "linkedRepo", - "description": "Find repo by name, owner and provider id", - "type": { - "kind": "OBJECT", - "name": "Repo" - }, - "args": [ - { - "name": "name", - "description": "Repo name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "owner", - "description": "Repo owner", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "provider", - "description": "Repo provider", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Issue", - "description": "Issue-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "number of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": "title of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": "body of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of Issue", - "args": [], - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": "action of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Issue repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resolvingCommits", - "description": "Issue resolvingCommits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "openedBy", - "description": "Issue openedBy SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedBy", - "description": "Issue closedBy SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labels", - "description": "Issue labels Label", - "args": [ - { - "name": "id", - "description": "id of Label", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", - "description": "defaults is list variant of default of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", - "description": "colors is list variant of color of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignees", - "description": "Issue assignees SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastAssignedBy", - "description": "Issue lastAssignedBy SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comments", - "description": "Issue comments Comment", - "args": [ - { - "name": "id", - "description": "id of Comment", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "commentIds is list variant of commentId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "paths", - "description": "paths is list variant of path of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "positions", - "description": "positions is list variant of position of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentTypes", - "description": "commentTypes is list variant of commentType of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Long", - "description": "Long type", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "Built-in String", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "Built-in ID", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "Built-in Float", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "IssueState", - "description": "Enum for IssueState", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "open", - "description": "Value for open", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closed", - "description": "Value for closed", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Repo", - "description": "Repo-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": "owner of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labels", - "description": "Repo labels Label", - "args": [ - { - "name": "id", - "description": "id of Label", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", - "description": "defaults is list variant of default of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", - "description": "colors is list variant of color of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channels", - "description": "Repo channels ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "org", - "description": "Repo org Org", - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "issue", - "description": "Repo issue Issue", - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "issues", - "description": "Repo issues Issue", - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Repo pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequests", - "description": "Repo pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches", - "description": "Repo branches Branch", - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "links", - "description": "Repo links ChannelLink", - "args": [ - { - "name": "id", - "description": "id of ChannelLink", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChannelLink", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook", - "description": "Repo webhook Webhook", - "args": [ - { - "name": "id", - "description": "id of Webhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of Webhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of Webhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "Built-in Boolean", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Label", - "description": "Label-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Label", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Label", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default", - "description": "default of Label", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "color", - "description": "color of Label", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Label repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_RepoOrdering", - "description": "Ordering Enum for Repo", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_asc", - "description": "Ascending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_desc", - "description": "Descending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge_asc", - "description": "Ascending sort for allowRebaseMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge_desc", - "description": "Descending sort for allowRebaseMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge_asc", - "description": "Ascending sort for allowSquashMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge_desc", - "description": "Descending sort for allowSquashMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit_asc", - "description": "Ascending sort for allowMergeCommit", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit_desc", - "description": "Descending sort for allowMergeCommit", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId_asc", - "description": "Ascending sort for repoId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId_desc", - "description": "Descending sort for repoId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultBranch_asc", - "description": "Ascending sort for defaultBranch", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultBranch_desc", - "description": "Descending sort for defaultBranch", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "description": "Filter Input Type for Repo", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not", - "description": "owner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_in", - "description": "owner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner_not_in", - "description": "owner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner_lt", - "description": "owner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_lte", - "description": "owner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_gt", - "description": "owner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_gte", - "description": "owner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_contains", - "description": "owner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_contains", - "description": "owner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_starts_with", - "description": "owner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_starts_with", - "description": "owner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_ends_with", - "description": "owner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_ends_with", - "description": "owner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge_not", - "description": "allowRebaseMerge_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge_not", - "description": "allowSquashMerge_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit_not", - "description": "allowMergeCommit_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_not", - "description": "repoId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_in", - "description": "repoId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "repoId_not_in", - "description": "repoId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "repoId_lt", - "description": "repoId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_lte", - "description": "repoId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_gt", - "description": "repoId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_gte", - "description": "repoId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_contains", - "description": "repoId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_not_contains", - "description": "repoId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_starts_with", - "description": "repoId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_not_starts_with", - "description": "repoId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_ends_with", - "description": "repoId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId_not_ends_with", - "description": "repoId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not", - "description": "gitHubId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_in", - "description": "gitHubId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_in", - "description": "gitHubId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_lt", - "description": "gitHubId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_lte", - "description": "gitHubId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gt", - "description": "gitHubId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gte", - "description": "gitHubId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_contains", - "description": "gitHubId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_contains", - "description": "gitHubId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_starts_with", - "description": "gitHubId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_starts_with", - "description": "gitHubId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_ends_with", - "description": "gitHubId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_ends_with", - "description": "gitHubId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_not", - "description": "defaultBranch_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_in", - "description": "defaultBranch_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "defaultBranch_not_in", - "description": "defaultBranch_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "defaultBranch_lt", - "description": "defaultBranch_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_lte", - "description": "defaultBranch_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_gt", - "description": "defaultBranch_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_gte", - "description": "defaultBranch_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_contains", - "description": "defaultBranch_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_not_contains", - "description": "defaultBranch_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_starts_with", - "description": "defaultBranch_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_not_starts_with", - "description": "defaultBranch_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_ends_with", - "description": "defaultBranch_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch_not_ends_with", - "description": "defaultBranch_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels", - "description": "labels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not", - "description": "labels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_in", - "description": "labels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not_in", - "description": "labels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_some", - "description": "labels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_none", - "description": "labels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_single", - "description": "labels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_every", - "description": "labels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels", - "description": "channels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not", - "description": "channels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_in", - "description": "channels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not_in", - "description": "channels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_some", - "description": "channels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_none", - "description": "channels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_single", - "description": "channels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_every", - "description": "channels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org", - "description": "org", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not", - "description": "org_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_in", - "description": "org_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not_in", - "description": "org_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue", - "description": "issue", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_not", - "description": "issue_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_in", - "description": "issue_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_not_in", - "description": "issue_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_some", - "description": "issue_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_none", - "description": "issue_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_single", - "description": "issue_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_every", - "description": "issue_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues", - "description": "issues", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_not", - "description": "issues_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_in", - "description": "issues_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_not_in", - "description": "issues_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_some", - "description": "issues_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_none", - "description": "issues_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_single", - "description": "issues_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issues_every", - "description": "issues_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "pullRequest", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not", - "description": "pullRequest_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_in", - "description": "pullRequest_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not_in", - "description": "pullRequest_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_some", - "description": "pullRequest_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_none", - "description": "pullRequest_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_single", - "description": "pullRequest_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_every", - "description": "pullRequest_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests", - "description": "pullRequests", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not", - "description": "pullRequests_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_in", - "description": "pullRequests_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not_in", - "description": "pullRequests_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_some", - "description": "pullRequests_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_none", - "description": "pullRequests_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_single", - "description": "pullRequests_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_every", - "description": "pullRequests_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches", - "description": "branches", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_not", - "description": "branches_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_in", - "description": "branches_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_not_in", - "description": "branches_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_some", - "description": "branches_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_none", - "description": "branches_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_single", - "description": "branches_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branches_every", - "description": "branches_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links", - "description": "links", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_not", - "description": "links_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_in", - "description": "links_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_not_in", - "description": "links_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_some", - "description": "links_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_none", - "description": "links_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_single", - "description": "links_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_every", - "description": "links_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook", - "description": "webhook", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_not", - "description": "webhook_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_in", - "description": "webhook_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_not_in", - "description": "webhook_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "description": "Filter Input Type for Label", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_not", - "description": "default_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_in", - "description": "default_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "default_not_in", - "description": "default_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "default_lt", - "description": "default_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_lte", - "description": "default_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_gt", - "description": "default_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_gte", - "description": "default_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_contains", - "description": "default_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_not_contains", - "description": "default_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_starts_with", - "description": "default_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_not_starts_with", - "description": "default_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_ends_with", - "description": "default_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default_not_ends_with", - "description": "default_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_not", - "description": "color_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_in", - "description": "color_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "color_not_in", - "description": "color_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "color_lt", - "description": "color_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_lte", - "description": "color_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_gt", - "description": "color_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_gte", - "description": "color_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_contains", - "description": "color_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_not_contains", - "description": "color_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_starts_with", - "description": "color_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_not_starts_with", - "description": "color_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_ends_with", - "description": "color_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color_not_ends_with", - "description": "color_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "description": "Filter Input Type for ChatChannel", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_lt", - "description": "provider_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_lte", - "description": "provider_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gt", - "description": "provider_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gte", - "description": "provider_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_contains", - "description": "provider_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_contains", - "description": "provider_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_starts_with", - "description": "provider_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_starts_with", - "description": "provider_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_ends_with", - "description": "provider_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_ends_with", - "description": "provider_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_not", - "description": "normalizedName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_in", - "description": "normalizedName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "normalizedName_not_in", - "description": "normalizedName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "normalizedName_lt", - "description": "normalizedName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_lte", - "description": "normalizedName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_gt", - "description": "normalizedName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_gte", - "description": "normalizedName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_contains", - "description": "normalizedName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_not_contains", - "description": "normalizedName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_starts_with", - "description": "normalizedName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_not_starts_with", - "description": "normalizedName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_ends_with", - "description": "normalizedName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName_not_ends_with", - "description": "normalizedName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_not", - "description": "channelId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_in", - "description": "channelId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "channelId_not_in", - "description": "channelId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "channelId_lt", - "description": "channelId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_lte", - "description": "channelId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_gt", - "description": "channelId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_gte", - "description": "channelId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_contains", - "description": "channelId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_not_contains", - "description": "channelId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_starts_with", - "description": "channelId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_not_starts_with", - "description": "channelId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_ends_with", - "description": "channelId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId_not_ends_with", - "description": "channelId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault_not", - "description": "isDefault_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf_not", - "description": "botInvitedSelf_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy", - "description": "createdBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy_not", - "description": "createdBy_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy_in", - "description": "createdBy_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdBy_not_in", - "description": "createdBy_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos", - "description": "repos", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_not", - "description": "repos_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_in", - "description": "repos_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_not_in", - "description": "repos_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_some", - "description": "repos_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_none", - "description": "repos_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_single", - "description": "repos_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_every", - "description": "repos_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links", - "description": "links", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_not", - "description": "links_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_in", - "description": "links_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_not_in", - "description": "links_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_some", - "description": "links_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_none", - "description": "links_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_single", - "description": "links_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "links_every", - "description": "links_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": "members", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_not", - "description": "members_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_in", - "description": "members_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_not_in", - "description": "members_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_some", - "description": "members_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_none", - "description": "members_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_single", - "description": "members_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_every", - "description": "members_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "description": "Filter Input Type for ChatId", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_not", - "description": "screenName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_in", - "description": "screenName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "screenName_not_in", - "description": "screenName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "screenName_lt", - "description": "screenName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_lte", - "description": "screenName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_gt", - "description": "screenName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_gte", - "description": "screenName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_contains", - "description": "screenName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_not_contains", - "description": "screenName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_starts_with", - "description": "screenName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_not_starts_with", - "description": "screenName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_ends_with", - "description": "screenName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName_not_ends_with", - "description": "screenName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_not", - "description": "userId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_in", - "description": "userId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "userId_not_in", - "description": "userId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "userId_lt", - "description": "userId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_lte", - "description": "userId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_gt", - "description": "userId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_gte", - "description": "userId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_contains", - "description": "userId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_not_contains", - "description": "userId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_starts_with", - "description": "userId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_not_starts_with", - "description": "userId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_ends_with", - "description": "userId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId_not_ends_with", - "description": "userId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_lt", - "description": "provider_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_lte", - "description": "provider_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gt", - "description": "provider_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gte", - "description": "provider_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_contains", - "description": "provider_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_contains", - "description": "provider_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_starts_with", - "description": "provider_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_starts_with", - "description": "provider_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_ends_with", - "description": "provider_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_ends_with", - "description": "provider_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_not", - "description": "isAtomistBot_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_in", - "description": "isAtomistBot_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_not_in", - "description": "isAtomistBot_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_lt", - "description": "isAtomistBot_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_lte", - "description": "isAtomistBot_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_gt", - "description": "isAtomistBot_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_gte", - "description": "isAtomistBot_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_contains", - "description": "isAtomistBot_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_not_contains", - "description": "isAtomistBot_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_starts_with", - "description": "isAtomistBot_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_not_starts_with", - "description": "isAtomistBot_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_ends_with", - "description": "isAtomistBot_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot_not_ends_with", - "description": "isAtomistBot_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_not", - "description": "isOwner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_in", - "description": "isOwner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isOwner_not_in", - "description": "isOwner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isOwner_lt", - "description": "isOwner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_lte", - "description": "isOwner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_gt", - "description": "isOwner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_gte", - "description": "isOwner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_contains", - "description": "isOwner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_not_contains", - "description": "isOwner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_starts_with", - "description": "isOwner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_not_starts_with", - "description": "isOwner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_ends_with", - "description": "isOwner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner_not_ends_with", - "description": "isOwner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_not", - "description": "isPrimaryOwner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_in", - "description": "isPrimaryOwner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_not_in", - "description": "isPrimaryOwner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_lt", - "description": "isPrimaryOwner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_lte", - "description": "isPrimaryOwner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_gt", - "description": "isPrimaryOwner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_gte", - "description": "isPrimaryOwner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_contains", - "description": "isPrimaryOwner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_not_contains", - "description": "isPrimaryOwner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_starts_with", - "description": "isPrimaryOwner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_not_starts_with", - "description": "isPrimaryOwner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_ends_with", - "description": "isPrimaryOwner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner_not_ends_with", - "description": "isPrimaryOwner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not", - "description": "isAdmin_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_in", - "description": "isAdmin_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isAdmin_not_in", - "description": "isAdmin_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isAdmin_lt", - "description": "isAdmin_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_lte", - "description": "isAdmin_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_gt", - "description": "isAdmin_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_gte", - "description": "isAdmin_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_contains", - "description": "isAdmin_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not_contains", - "description": "isAdmin_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_starts_with", - "description": "isAdmin_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not_starts_with", - "description": "isAdmin_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_ends_with", - "description": "isAdmin_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin_not_ends_with", - "description": "isAdmin_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_not", - "description": "isBot_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_in", - "description": "isBot_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isBot_not_in", - "description": "isBot_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "isBot_lt", - "description": "isBot_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_lte", - "description": "isBot_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_gt", - "description": "isBot_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_gte", - "description": "isBot_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_contains", - "description": "isBot_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_not_contains", - "description": "isBot_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_starts_with", - "description": "isBot_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_not_starts_with", - "description": "isBot_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_ends_with", - "description": "isBot_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot_not_ends_with", - "description": "isBot_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_not", - "description": "timezoneLabel_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_in", - "description": "timezoneLabel_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_not_in", - "description": "timezoneLabel_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_lt", - "description": "timezoneLabel_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_lte", - "description": "timezoneLabel_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_gt", - "description": "timezoneLabel_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_gte", - "description": "timezoneLabel_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_contains", - "description": "timezoneLabel_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_not_contains", - "description": "timezoneLabel_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_starts_with", - "description": "timezoneLabel_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_not_starts_with", - "description": "timezoneLabel_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_ends_with", - "description": "timezoneLabel_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel_not_ends_with", - "description": "timezoneLabel_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels", - "description": "channels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not", - "description": "channels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_in", - "description": "channels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not_in", - "description": "channels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_some", - "description": "channels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_none", - "description": "channels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_single", - "description": "channels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_every", - "description": "channels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails", - "description": "emails", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not", - "description": "emails_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_in", - "description": "emails_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not_in", - "description": "emails_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_some", - "description": "emails_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_none", - "description": "emails_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_single", - "description": "emails_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_every", - "description": "emails_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam", - "description": "chatTeam", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_not", - "description": "chatTeam_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_in", - "description": "chatTeam_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_not_in", - "description": "chatTeam_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated", - "description": "channelsCreated", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_not", - "description": "channelsCreated_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_in", - "description": "channelsCreated_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_not_in", - "description": "channelsCreated_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_some", - "description": "channelsCreated_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_none", - "description": "channelsCreated_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_single", - "description": "channelsCreated_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelsCreated_every", - "description": "channelsCreated_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person", - "description": "person", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not", - "description": "person_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_in", - "description": "person_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not_in", - "description": "person_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "description": "Filter Input Type for Email", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": "address", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not", - "description": "address_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_in", - "description": "address_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_not_in", - "description": "address_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "address_lt", - "description": "address_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_lte", - "description": "address_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gt", - "description": "address_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_gte", - "description": "address_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_contains", - "description": "address_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_contains", - "description": "address_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_starts_with", - "description": "address_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_starts_with", - "description": "address_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_ends_with", - "description": "address_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address_not_ends_with", - "description": "address_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId", - "description": "scmId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_not", - "description": "scmId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_in", - "description": "scmId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_not_in", - "description": "scmId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not", - "description": "gitHubId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_in", - "description": "gitHubId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_in", - "description": "gitHubId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId", - "description": "chatId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_not", - "description": "chatId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_in", - "description": "chatId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_not_in", - "description": "chatId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person", - "description": "person", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not", - "description": "person_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_in", - "description": "person_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not_in", - "description": "person_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "description": "Filter Input Type for SCMId", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not", - "description": "login_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_in", - "description": "login_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "login_not_in", - "description": "login_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "login_lt", - "description": "login_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_lte", - "description": "login_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_gt", - "description": "login_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_gte", - "description": "login_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_contains", - "description": "login_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_contains", - "description": "login_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_starts_with", - "description": "login_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_starts_with", - "description": "login_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_ends_with", - "description": "login_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_ends_with", - "description": "login_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_some", - "description": "provider_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_none", - "description": "provider_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_single", - "description": "provider_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_every", - "description": "provider_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider", - "description": "scmProvider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not", - "description": "scmProvider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_in", - "description": "scmProvider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not_in", - "description": "scmProvider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails", - "description": "emails", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not", - "description": "emails_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_in", - "description": "emails_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not_in", - "description": "emails_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_some", - "description": "emails_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_none", - "description": "emails_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_single", - "description": "emails_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_every", - "description": "emails_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person", - "description": "person", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not", - "description": "person_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_in", - "description": "person_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not_in", - "description": "person_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "description": "Filter Input Type for GitHubProvider", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not", - "description": "providerId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_in", - "description": "providerId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId_not_in", - "description": "providerId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId_lt", - "description": "providerId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_lte", - "description": "providerId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_gt", - "description": "providerId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_gte", - "description": "providerId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_contains", - "description": "providerId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_contains", - "description": "providerId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_starts_with", - "description": "providerId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_starts_with", - "description": "providerId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_ends_with", - "description": "providerId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_ends_with", - "description": "providerId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not", - "description": "apiUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_in", - "description": "apiUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_in", - "description": "apiUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apiUrl_lt", - "description": "apiUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_lte", - "description": "apiUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_gt", - "description": "apiUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_gte", - "description": "apiUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_contains", - "description": "apiUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_contains", - "description": "apiUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_starts_with", - "description": "apiUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_starts_with", - "description": "apiUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_ends_with", - "description": "apiUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_ends_with", - "description": "apiUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not", - "description": "gitUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_in", - "description": "gitUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_in", - "description": "gitUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitUrl_lt", - "description": "gitUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_lte", - "description": "gitUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_gt", - "description": "gitUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_gte", - "description": "gitUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_contains", - "description": "gitUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_contains", - "description": "gitUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_starts_with", - "description": "gitUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_starts_with", - "description": "gitUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_ends_with", - "description": "gitUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_ends_with", - "description": "gitUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType_not", - "description": "providerType_not", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType_in", - "description": "providerType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerType_not_in", - "description": "providerType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProviderType", - "description": "Enum for ProviderType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "bitbucket_cloud", - "description": "Value for bitbucket_cloud", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "github_com", - "description": "Value for github_com", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ghe", - "description": "Value for ghe", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bitbucket", - "description": "Value for bitbucket", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "description": "Filter Input Type for Team", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "description_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "description_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "description_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "description_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "description_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "description_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "description_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "description_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "description_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "description_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "description_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "description_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "description_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_not", - "description": "iconUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_in", - "description": "iconUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "iconUrl_not_in", - "description": "iconUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "iconUrl_lt", - "description": "iconUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_lte", - "description": "iconUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_gt", - "description": "iconUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_gte", - "description": "iconUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_contains", - "description": "iconUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_not_contains", - "description": "iconUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_starts_with", - "description": "iconUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_not_starts_with", - "description": "iconUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_ends_with", - "description": "iconUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl_not_ends_with", - "description": "iconUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "createdAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "createdAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "createdAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "createdAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "createdAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "createdAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "createdAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_contains", - "description": "createdAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_contains", - "description": "createdAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_starts_with", - "description": "createdAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_starts_with", - "description": "createdAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_ends_with", - "description": "createdAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_ends_with", - "description": "createdAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons", - "description": "persons", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_not", - "description": "persons_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_in", - "description": "persons_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_not_in", - "description": "persons_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_some", - "description": "persons_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_none", - "description": "persons_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_single", - "description": "persons_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "persons_every", - "description": "persons_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs", - "description": "orgs", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_not", - "description": "orgs_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_in", - "description": "orgs_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_not_in", - "description": "orgs_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_some", - "description": "orgs_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_none", - "description": "orgs_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_single", - "description": "orgs_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_every", - "description": "orgs_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_not", - "description": "providers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_in", - "description": "providers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_not_in", - "description": "providers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_some", - "description": "providers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_none", - "description": "providers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_single", - "description": "providers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_every", - "description": "providers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders", - "description": "scmProviders", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_not", - "description": "scmProviders_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_in", - "description": "scmProviders_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_not_in", - "description": "scmProviders_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_some", - "description": "scmProviders_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_none", - "description": "scmProviders_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_single", - "description": "scmProviders_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_every", - "description": "scmProviders_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams", - "description": "chatTeams", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_not", - "description": "chatTeams_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_in", - "description": "chatTeams_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_not_in", - "description": "chatTeams_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_some", - "description": "chatTeams_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_none", - "description": "chatTeams_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_single", - "description": "chatTeams_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeams_every", - "description": "chatTeams_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "description": "Filter Input Type for Person", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_not", - "description": "forename_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_in", - "description": "forename_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "forename_not_in", - "description": "forename_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "forename_lt", - "description": "forename_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_lte", - "description": "forename_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_gt", - "description": "forename_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_gte", - "description": "forename_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_contains", - "description": "forename_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_not_contains", - "description": "forename_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_starts_with", - "description": "forename_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_not_starts_with", - "description": "forename_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_ends_with", - "description": "forename_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename_not_ends_with", - "description": "forename_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_not", - "description": "surname_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_in", - "description": "surname_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "surname_not_in", - "description": "surname_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "surname_lt", - "description": "surname_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_lte", - "description": "surname_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_gt", - "description": "surname_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_gte", - "description": "surname_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_contains", - "description": "surname_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_not_contains", - "description": "surname_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_starts_with", - "description": "surname_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_not_starts_with", - "description": "surname_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_ends_with", - "description": "surname_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname_not_ends_with", - "description": "surname_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId", - "description": "scmId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_not", - "description": "scmId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_in", - "description": "scmId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmId_not_in", - "description": "scmId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not", - "description": "gitHubId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_in", - "description": "gitHubId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_in", - "description": "gitHubId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId", - "description": "chatId", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_not", - "description": "chatId_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_in", - "description": "chatId_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatId_not_in", - "description": "chatId_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails", - "description": "emails", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not", - "description": "emails_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_in", - "description": "emails_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not_in", - "description": "emails_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_some", - "description": "emails_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_none", - "description": "emails_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_single", - "description": "emails_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_every", - "description": "emails_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "description": "Filter Input Type for GitHubId", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "login", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not", - "description": "login_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_in", - "description": "login_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "login_not_in", - "description": "login_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "login_lt", - "description": "login_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_lte", - "description": "login_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_gt", - "description": "login_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_gte", - "description": "login_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_contains", - "description": "login_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_contains", - "description": "login_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_starts_with", - "description": "login_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_starts_with", - "description": "login_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_ends_with", - "description": "login_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login_not_ends_with", - "description": "login_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_some", - "description": "provider_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_none", - "description": "provider_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_single", - "description": "provider_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_every", - "description": "provider_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider", - "description": "scmProvider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not", - "description": "scmProvider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_in", - "description": "scmProvider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not_in", - "description": "scmProvider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails", - "description": "emails", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not", - "description": "emails_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_in", - "description": "emails_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_not_in", - "description": "emails_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_some", - "description": "emails_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_none", - "description": "emails_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_single", - "description": "emails_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emails_every", - "description": "emails_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person", - "description": "person", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not", - "description": "person_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_in", - "description": "person_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "person_not_in", - "description": "person_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "description": "Filter Input Type for SCMProvider", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not", - "description": "providerId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_in", - "description": "providerId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId_not_in", - "description": "providerId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId_lt", - "description": "providerId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_lte", - "description": "providerId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_gt", - "description": "providerId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_gte", - "description": "providerId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_contains", - "description": "providerId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_contains", - "description": "providerId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_starts_with", - "description": "providerId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_starts_with", - "description": "providerId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_ends_with", - "description": "providerId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId_not_ends_with", - "description": "providerId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not", - "description": "apiUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_in", - "description": "apiUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_in", - "description": "apiUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apiUrl_lt", - "description": "apiUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_lte", - "description": "apiUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_gt", - "description": "apiUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_gte", - "description": "apiUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_contains", - "description": "apiUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_contains", - "description": "apiUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_starts_with", - "description": "apiUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_starts_with", - "description": "apiUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_ends_with", - "description": "apiUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl_not_ends_with", - "description": "apiUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not", - "description": "gitUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_in", - "description": "gitUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_in", - "description": "gitUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitUrl_lt", - "description": "gitUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_lte", - "description": "gitUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_gt", - "description": "gitUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_gte", - "description": "gitUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_contains", - "description": "gitUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_contains", - "description": "gitUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_starts_with", - "description": "gitUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_starts_with", - "description": "gitUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_ends_with", - "description": "gitUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl_not_ends_with", - "description": "gitUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType_not", - "description": "providerType_not", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType_in", - "description": "providerType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerType_not_in", - "description": "providerType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "description": "Filter Input Type for Org", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not", - "description": "owner_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_in", - "description": "owner_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner_not_in", - "description": "owner_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner_lt", - "description": "owner_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_lte", - "description": "owner_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_gt", - "description": "owner_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_gte", - "description": "owner_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_contains", - "description": "owner_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_contains", - "description": "owner_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_starts_with", - "description": "owner_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_starts_with", - "description": "owner_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_ends_with", - "description": "owner_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner_not_ends_with", - "description": "owner_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType_not", - "description": "ownerType_not", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType_in", - "description": "ownerType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "ownerType_not_in", - "description": "ownerType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider", - "description": "scmProvider", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not", - "description": "scmProvider_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_in", - "description": "scmProvider_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProvider_not_in", - "description": "scmProvider_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_some", - "description": "repo_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_none", - "description": "repo_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_single", - "description": "repo_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_every", - "description": "repo_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos", - "description": "repos", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_not", - "description": "repos_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_in", - "description": "repos_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_not_in", - "description": "repos_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_some", - "description": "repos_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_none", - "description": "repos_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_single", - "description": "repos_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repos_every", - "description": "repos_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook", - "description": "webhook", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_not", - "description": "webhook_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_in", - "description": "webhook_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_not_in", - "description": "webhook_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_some", - "description": "webhook_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_none", - "description": "webhook_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_single", - "description": "webhook_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhook_every", - "description": "webhook_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks", - "description": "webhooks", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_not", - "description": "webhooks_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_in", - "description": "webhooks_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_not_in", - "description": "webhooks_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_some", - "description": "webhooks_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_none", - "description": "webhooks_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_single", - "description": "webhooks_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhooks_every", - "description": "webhooks_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam", - "description": "chatTeam", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_not", - "description": "chatTeam_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_in", - "description": "chatTeam_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeam_not_in", - "description": "chatTeam_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OwnerType", - "description": "Enum for OwnerType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "user", - "description": "Value for user", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": "Value for organization", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "description": "Filter Input Type for GitHubOrgWebhook", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType_not", - "description": "webhookType_not", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType_in", - "description": "webhookType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "webhookType_not_in", - "description": "webhookType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "org", - "description": "org", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not", - "description": "org_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_in", - "description": "org_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not_in", - "description": "org_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WebhookType", - "description": "Enum for WebhookType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "organization", - "description": "Value for organization", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repository", - "description": "Value for repository", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "description": "Filter Input Type for Webhook", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType_not", - "description": "webhookType_not", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType_in", - "description": "webhookType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "webhookType_not_in", - "description": "webhookType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "org", - "description": "org", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not", - "description": "org_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_in", - "description": "org_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "org_not_in", - "description": "org_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "description": "Filter Input Type for ChatTeam", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_lt", - "description": "provider_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_lte", - "description": "provider_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gt", - "description": "provider_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gte", - "description": "provider_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_contains", - "description": "provider_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_contains", - "description": "provider_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_starts_with", - "description": "provider_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_starts_with", - "description": "provider_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_ends_with", - "description": "provider_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_ends_with", - "description": "provider_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not", - "description": "domain_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_in", - "description": "domain_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_not_in", - "description": "domain_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_lt", - "description": "domain_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_lte", - "description": "domain_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gt", - "description": "domain_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gte", - "description": "domain_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_contains", - "description": "domain_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_contains", - "description": "domain_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_starts_with", - "description": "domain_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_starts_with", - "description": "domain_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_ends_with", - "description": "domain_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_ends_with", - "description": "domain_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount_not", - "description": "messageCount_not", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount_in", - "description": "messageCount_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "messageCount_not_in", - "description": "messageCount_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "messageCount_lt", - "description": "messageCount_lt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount_lte", - "description": "messageCount_lte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount_gt", - "description": "messageCount_gt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount_gte", - "description": "messageCount_gte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_not", - "description": "emailDomain_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_in", - "description": "emailDomain_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "emailDomain_not_in", - "description": "emailDomain_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "emailDomain_lt", - "description": "emailDomain_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_lte", - "description": "emailDomain_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_gt", - "description": "emailDomain_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_gte", - "description": "emailDomain_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_contains", - "description": "emailDomain_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_not_contains", - "description": "emailDomain_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_starts_with", - "description": "emailDomain_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_not_starts_with", - "description": "emailDomain_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_ends_with", - "description": "emailDomain_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain_not_ends_with", - "description": "emailDomain_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs", - "description": "orgs", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_not", - "description": "orgs_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_in", - "description": "orgs_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_not_in", - "description": "orgs_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_some", - "description": "orgs_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_none", - "description": "orgs_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_single", - "description": "orgs_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orgs_every", - "description": "orgs_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_not", - "description": "providers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_in", - "description": "providers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_not_in", - "description": "providers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_some", - "description": "providers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_none", - "description": "providers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_single", - "description": "providers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providers_every", - "description": "providers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders", - "description": "scmProviders", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_not", - "description": "scmProviders_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_in", - "description": "scmProviders_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_not_in", - "description": "scmProviders_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_some", - "description": "scmProviders_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_none", - "description": "scmProviders_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_single", - "description": "scmProviders_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "scmProviders_every", - "description": "scmProviders_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels", - "description": "channels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not", - "description": "channels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_in", - "description": "channels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_not_in", - "description": "channels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_some", - "description": "channels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_none", - "description": "channels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_single", - "description": "channels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channels_every", - "description": "channels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members", - "description": "members", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_not", - "description": "members_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_in", - "description": "members_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_not_in", - "description": "members_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_some", - "description": "members_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_none", - "description": "members_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_single", - "description": "members_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "members_every", - "description": "members_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team", - "description": "team", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not", - "description": "team_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_in", - "description": "team_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "team_not_in", - "description": "team_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "description": "Filter Input Type for ChannelLink", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel", - "description": "channel", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_not", - "description": "channel_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_in", - "description": "channel_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_not_in", - "description": "channel_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "description": "Filter Input Type for Issue", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_not", - "description": "number_not", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_in", - "description": "number_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_not_in", - "description": "number_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_lt", - "description": "number_lt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_lte", - "description": "number_lte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gt", - "description": "number_gt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gte", - "description": "number_gte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not", - "description": "title_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_in", - "description": "title_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "title_not_in", - "description": "title_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "title_lt", - "description": "title_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_lte", - "description": "title_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_gt", - "description": "title_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_gte", - "description": "title_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_contains", - "description": "title_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_contains", - "description": "title_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_starts_with", - "description": "title_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_starts_with", - "description": "title_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_ends_with", - "description": "title_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_ends_with", - "description": "title_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "body_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "body_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "body_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "body_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "body_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "body_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "body_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "body_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "body_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "body_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "body_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "body_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "body_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_not", - "description": "action_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_in", - "description": "action_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "action_not_in", - "description": "action_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "action_lt", - "description": "action_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_lte", - "description": "action_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_gt", - "description": "action_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_gte", - "description": "action_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_contains", - "description": "action_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_not_contains", - "description": "action_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_starts_with", - "description": "action_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_not_starts_with", - "description": "action_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_ends_with", - "description": "action_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action_not_ends_with", - "description": "action_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "createdAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "createdAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "createdAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "createdAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "createdAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "createdAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "createdAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_contains", - "description": "createdAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_contains", - "description": "createdAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_starts_with", - "description": "createdAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_starts_with", - "description": "createdAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_ends_with", - "description": "createdAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_ends_with", - "description": "createdAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "updatedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "updatedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "updatedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "updatedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "updatedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "updatedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "updatedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_contains", - "description": "updatedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_contains", - "description": "updatedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_starts_with", - "description": "updatedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_starts_with", - "description": "updatedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_ends_with", - "description": "updatedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_ends_with", - "description": "updatedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not", - "description": "closedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_in", - "description": "closedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "closedAt_not_in", - "description": "closedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "closedAt_lt", - "description": "closedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_lte", - "description": "closedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_gt", - "description": "closedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_gte", - "description": "closedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_contains", - "description": "closedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_contains", - "description": "closedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_starts_with", - "description": "closedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_starts_with", - "description": "closedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_ends_with", - "description": "closedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_ends_with", - "description": "closedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits", - "description": "resolvingCommits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_not", - "description": "resolvingCommits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_in", - "description": "resolvingCommits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_not_in", - "description": "resolvingCommits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_some", - "description": "resolvingCommits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_none", - "description": "resolvingCommits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_single", - "description": "resolvingCommits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolvingCommits_every", - "description": "resolvingCommits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "openedBy", - "description": "openedBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "openedBy_not", - "description": "openedBy_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "openedBy_in", - "description": "openedBy_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "openedBy_not_in", - "description": "openedBy_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedBy", - "description": "closedBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedBy_not", - "description": "closedBy_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedBy_in", - "description": "closedBy_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedBy_not_in", - "description": "closedBy_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels", - "description": "labels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not", - "description": "labels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_in", - "description": "labels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not_in", - "description": "labels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_some", - "description": "labels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_none", - "description": "labels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_single", - "description": "labels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_every", - "description": "labels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees", - "description": "assignees", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_not", - "description": "assignees_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_in", - "description": "assignees_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_not_in", - "description": "assignees_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_some", - "description": "assignees_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_none", - "description": "assignees_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_single", - "description": "assignees_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_every", - "description": "assignees_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy", - "description": "lastAssignedBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_not", - "description": "lastAssignedBy_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_in", - "description": "lastAssignedBy_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_not_in", - "description": "lastAssignedBy_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments", - "description": "comments", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not", - "description": "comments_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_in", - "description": "comments_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not_in", - "description": "comments_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_some", - "description": "comments_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_none", - "description": "comments_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_single", - "description": "comments_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_every", - "description": "comments_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "description": "Filter Input Type for Commit", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "sha", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not", - "description": "sha_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_in", - "description": "sha_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha_not_in", - "description": "sha_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha_lt", - "description": "sha_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_lte", - "description": "sha_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_gt", - "description": "sha_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_gte", - "description": "sha_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_contains", - "description": "sha_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_contains", - "description": "sha_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_starts_with", - "description": "sha_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_starts_with", - "description": "sha_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_ends_with", - "description": "sha_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_ends_with", - "description": "sha_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not", - "description": "message_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_in", - "description": "message_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_not_in", - "description": "message_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message_lt", - "description": "message_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_lte", - "description": "message_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gt", - "description": "message_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_gte", - "description": "message_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_contains", - "description": "message_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_contains", - "description": "message_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_starts_with", - "description": "message_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_starts_with", - "description": "message_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_ends_with", - "description": "message_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message_not_ends_with", - "description": "message_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email", - "description": "email", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not", - "description": "email_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_in", - "description": "email_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "email_not_in", - "description": "email_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds", - "description": "builds", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not", - "description": "builds_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_in", - "description": "builds_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not_in", - "description": "builds_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_some", - "description": "builds_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_none", - "description": "builds_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_single", - "description": "builds_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_every", - "description": "builds_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author", - "description": "author", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_not", - "description": "author_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_in", - "description": "author_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_not_in", - "description": "author_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committer", - "description": "committer", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committer_not", - "description": "committer_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committer_in", - "description": "committer_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committer_not_in", - "description": "committer_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags", - "description": "tags", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_not", - "description": "tags_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_in", - "description": "tags_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_not_in", - "description": "tags_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_some", - "description": "tags_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_none", - "description": "tags_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_single", - "description": "tags_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tags_every", - "description": "tags_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves", - "description": "resolves", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_not", - "description": "resolves_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_in", - "description": "resolves_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_not_in", - "description": "resolves_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_some", - "description": "resolves_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_none", - "description": "resolves_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_single", - "description": "resolves_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resolves_every", - "description": "resolves_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses", - "description": "statuses", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_not", - "description": "statuses_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_in", - "description": "statuses_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_not_in", - "description": "statuses_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_some", - "description": "statuses_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_none", - "description": "statuses_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_single", - "description": "statuses_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statuses_every", - "description": "statuses_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes", - "description": "pushes", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_not", - "description": "pushes_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_in", - "description": "pushes_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_not_in", - "description": "pushes_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_some", - "description": "pushes_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_none", - "description": "pushes_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_single", - "description": "pushes_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pushes_every", - "description": "pushes_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests", - "description": "pullRequests", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not", - "description": "pullRequests_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_in", - "description": "pullRequests_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not_in", - "description": "pullRequests_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_some", - "description": "pullRequests_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_none", - "description": "pullRequests_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_single", - "description": "pullRequests_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_every", - "description": "pullRequests_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps", - "description": "herokuApps", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_not", - "description": "herokuApps_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_in", - "description": "herokuApps_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_not_in", - "description": "herokuApps_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_some", - "description": "herokuApps_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_none", - "description": "herokuApps_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_single", - "description": "herokuApps_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "herokuApps_every", - "description": "herokuApps_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps", - "description": "apps", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_not", - "description": "apps_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_in", - "description": "apps_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_not_in", - "description": "apps_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_some", - "description": "apps_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_none", - "description": "apps_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_single", - "description": "apps_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps_every", - "description": "apps_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints", - "description": "fingerprints", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_not", - "description": "fingerprints_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_in", - "description": "fingerprints_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_not_in", - "description": "fingerprints_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_some", - "description": "fingerprints_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_none", - "description": "fingerprints_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_single", - "description": "fingerprints_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fingerprints_every", - "description": "fingerprints_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "impact", - "description": "impact", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "impact_not", - "description": "impact_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "impact_in", - "description": "impact_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "impact_not_in", - "description": "impact_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": "image", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "image_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "image_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "image_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_not", - "description": "images_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_in", - "description": "images_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_not_in", - "description": "images_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_some", - "description": "images_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_none", - "description": "images_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_single", - "description": "images_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_every", - "description": "images_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "description": "Filter Input Type for Build", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_not", - "description": "buildId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_in", - "description": "buildId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "buildId_not_in", - "description": "buildId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "buildId_lt", - "description": "buildId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_lte", - "description": "buildId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_gt", - "description": "buildId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_gte", - "description": "buildId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_contains", - "description": "buildId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_not_contains", - "description": "buildId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_starts_with", - "description": "buildId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_not_starts_with", - "description": "buildId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_ends_with", - "description": "buildId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId_not_ends_with", - "description": "buildId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_not", - "description": "status_not", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status_in", - "description": "status_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "status_not_in", - "description": "status_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_not", - "description": "buildUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_in", - "description": "buildUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "buildUrl_not_in", - "description": "buildUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "buildUrl_lt", - "description": "buildUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_lte", - "description": "buildUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_gt", - "description": "buildUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_gte", - "description": "buildUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_contains", - "description": "buildUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_not_contains", - "description": "buildUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_starts_with", - "description": "buildUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_not_starts_with", - "description": "buildUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_ends_with", - "description": "buildUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl_not_ends_with", - "description": "buildUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_not", - "description": "compareUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_in", - "description": "compareUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "compareUrl_not_in", - "description": "compareUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "compareUrl_lt", - "description": "compareUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_lte", - "description": "compareUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_gt", - "description": "compareUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_gte", - "description": "compareUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_contains", - "description": "compareUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_not_contains", - "description": "compareUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_starts_with", - "description": "compareUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_not_starts_with", - "description": "compareUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_ends_with", - "description": "compareUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl_not_ends_with", - "description": "compareUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_not", - "description": "trigger_not", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger_in", - "description": "trigger_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "trigger_not_in", - "description": "trigger_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_lt", - "description": "provider_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_lte", - "description": "provider_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gt", - "description": "provider_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gte", - "description": "provider_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_contains", - "description": "provider_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_contains", - "description": "provider_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_starts_with", - "description": "provider_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_starts_with", - "description": "provider_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_ends_with", - "description": "provider_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_ends_with", - "description": "provider_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_not", - "description": "pullRequestNumber_not", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_in", - "description": "pullRequestNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_not_in", - "description": "pullRequestNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_lt", - "description": "pullRequestNumber_lt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_lte", - "description": "pullRequestNumber_lte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_gt", - "description": "pullRequestNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber_gte", - "description": "pullRequestNumber_gte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_not", - "description": "startedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_in", - "description": "startedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startedAt_not_in", - "description": "startedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "startedAt_lt", - "description": "startedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_lte", - "description": "startedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_gt", - "description": "startedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_gte", - "description": "startedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_contains", - "description": "startedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_not_contains", - "description": "startedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_starts_with", - "description": "startedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_not_starts_with", - "description": "startedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_ends_with", - "description": "startedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt_not_ends_with", - "description": "startedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_not", - "description": "finishedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_in", - "description": "finishedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "finishedAt_not_in", - "description": "finishedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "finishedAt_lt", - "description": "finishedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_lte", - "description": "finishedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_gt", - "description": "finishedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_gte", - "description": "finishedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_contains", - "description": "finishedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_not_contains", - "description": "finishedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_starts_with", - "description": "finishedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_not_starts_with", - "description": "finishedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_ends_with", - "description": "finishedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt_not_ends_with", - "description": "finishedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not", - "description": "workflowId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_in", - "description": "workflowId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "workflowId_not_in", - "description": "workflowId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "workflowId_lt", - "description": "workflowId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_lte", - "description": "workflowId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_gt", - "description": "workflowId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_gte", - "description": "workflowId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_contains", - "description": "workflowId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_contains", - "description": "workflowId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_starts_with", - "description": "workflowId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_starts_with", - "description": "workflowId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_ends_with", - "description": "workflowId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_ends_with", - "description": "workflowId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_not", - "description": "jobName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_in", - "description": "jobName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "jobName_not_in", - "description": "jobName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "jobName_lt", - "description": "jobName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_lte", - "description": "jobName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_gt", - "description": "jobName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_gte", - "description": "jobName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_contains", - "description": "jobName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_not_contains", - "description": "jobName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_starts_with", - "description": "jobName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_not_starts_with", - "description": "jobName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_ends_with", - "description": "jobName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName_not_ends_with", - "description": "jobName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_not", - "description": "jobId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_in", - "description": "jobId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "jobId_not_in", - "description": "jobId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "jobId_lt", - "description": "jobId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_lte", - "description": "jobId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_gt", - "description": "jobId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_gte", - "description": "jobId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_contains", - "description": "jobId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_not_contains", - "description": "jobId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_starts_with", - "description": "jobId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_not_starts_with", - "description": "jobId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_ends_with", - "description": "jobId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId_not_ends_with", - "description": "jobId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push", - "description": "push", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_not", - "description": "push_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_in", - "description": "push_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_not_in", - "description": "push_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "pullRequest", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not", - "description": "pullRequest_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_in", - "description": "pullRequest_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not_in", - "description": "pullRequest_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag", - "description": "tag", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_not", - "description": "tag_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_in", - "description": "tag_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_not_in", - "description": "tag_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflow", - "description": "workflow", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflow_not", - "description": "workflow_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflow_in", - "description": "workflow_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflow_not_in", - "description": "workflow_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BuildStatus", - "description": "Enum for BuildStatus", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "passed", - "description": "Value for passed", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "broken", - "description": "Value for broken", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": "Value for failed", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "started", - "description": "Value for started", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "canceled", - "description": "Value for canceled", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "BuildTrigger", - "description": "Enum for BuildTrigger", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "pull_request", - "description": "Value for pull_request", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": "Value for push", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag", - "description": "Value for tag", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cron", - "description": "Value for cron", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "description": "Filter Input Type for Push", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not", - "description": "branch_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_in", - "description": "branch_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branch_not_in", - "description": "branch_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branch_lt", - "description": "branch_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_lte", - "description": "branch_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_gt", - "description": "branch_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_gte", - "description": "branch_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_contains", - "description": "branch_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not_contains", - "description": "branch_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_starts_with", - "description": "branch_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not_starts_with", - "description": "branch_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_ends_with", - "description": "branch_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not_ends_with", - "description": "branch_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "after", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after_not", - "description": "after_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after_in", - "description": "after_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after_not_in", - "description": "after_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "before", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before_not", - "description": "before_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before_in", - "description": "before_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before_not_in", - "description": "before_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds", - "description": "builds", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not", - "description": "builds_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_in", - "description": "builds_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not_in", - "description": "builds_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_some", - "description": "builds_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_none", - "description": "builds_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_single", - "description": "builds_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_every", - "description": "builds_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "description": "Filter Input Type for PullRequest", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_not", - "description": "number_not", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_in", - "description": "number_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_not_in", - "description": "number_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "number_lt", - "description": "number_lt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_lte", - "description": "number_lte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gt", - "description": "number_gt", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gte", - "description": "number_gte", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_not", - "description": "prId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_in", - "description": "prId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "prId_not_in", - "description": "prId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "prId_lt", - "description": "prId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_lte", - "description": "prId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_gt", - "description": "prId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_gte", - "description": "prId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_contains", - "description": "prId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_not_contains", - "description": "prId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_starts_with", - "description": "prId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_not_starts_with", - "description": "prId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_ends_with", - "description": "prId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId_not_ends_with", - "description": "prId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "body_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "body_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "body_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "body_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "body_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "body_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "body_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "body_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "body_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "body_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "body_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "body_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "body_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_lt", - "description": "state_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_lte", - "description": "state_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gt", - "description": "state_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gte", - "description": "state_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_contains", - "description": "state_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_contains", - "description": "state_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_starts_with", - "description": "state_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_starts_with", - "description": "state_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_ends_with", - "description": "state_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_ends_with", - "description": "state_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged_not", - "description": "merged_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_not", - "description": "baseBranchName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_in", - "description": "baseBranchName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "baseBranchName_not_in", - "description": "baseBranchName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "baseBranchName_lt", - "description": "baseBranchName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_lte", - "description": "baseBranchName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_gt", - "description": "baseBranchName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_gte", - "description": "baseBranchName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_contains", - "description": "baseBranchName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_not_contains", - "description": "baseBranchName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_starts_with", - "description": "baseBranchName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_not_starts_with", - "description": "baseBranchName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_ends_with", - "description": "baseBranchName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName_not_ends_with", - "description": "baseBranchName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_not", - "description": "branchName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_in", - "description": "branchName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branchName_not_in", - "description": "branchName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branchName_lt", - "description": "branchName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_lte", - "description": "branchName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_gt", - "description": "branchName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_gte", - "description": "branchName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_contains", - "description": "branchName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_not_contains", - "description": "branchName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_starts_with", - "description": "branchName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_not_starts_with", - "description": "branchName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_ends_with", - "description": "branchName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName_not_ends_with", - "description": "branchName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not", - "description": "title_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_in", - "description": "title_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "title_not_in", - "description": "title_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "title_lt", - "description": "title_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_lte", - "description": "title_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_gt", - "description": "title_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_gte", - "description": "title_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_contains", - "description": "title_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_contains", - "description": "title_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_starts_with", - "description": "title_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_starts_with", - "description": "title_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_ends_with", - "description": "title_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title_not_ends_with", - "description": "title_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "createdAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "createdAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "createdAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "createdAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "createdAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "createdAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "createdAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_contains", - "description": "createdAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_contains", - "description": "createdAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_starts_with", - "description": "createdAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_starts_with", - "description": "createdAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_ends_with", - "description": "createdAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_ends_with", - "description": "createdAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "updatedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "updatedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "updatedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "updatedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "updatedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "updatedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "updatedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_contains", - "description": "updatedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_contains", - "description": "updatedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_starts_with", - "description": "updatedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_starts_with", - "description": "updatedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_ends_with", - "description": "updatedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_ends_with", - "description": "updatedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not", - "description": "closedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_in", - "description": "closedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "closedAt_not_in", - "description": "closedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "closedAt_lt", - "description": "closedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_lte", - "description": "closedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_gt", - "description": "closedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_gte", - "description": "closedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_contains", - "description": "closedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_contains", - "description": "closedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_starts_with", - "description": "closedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_starts_with", - "description": "closedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_ends_with", - "description": "closedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt_not_ends_with", - "description": "closedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_not", - "description": "mergedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_in", - "description": "mergedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mergedAt_not_in", - "description": "mergedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mergedAt_lt", - "description": "mergedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_lte", - "description": "mergedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_gt", - "description": "mergedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_gte", - "description": "mergedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_contains", - "description": "mergedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_not_contains", - "description": "mergedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_starts_with", - "description": "mergedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_not_starts_with", - "description": "mergedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_ends_with", - "description": "mergedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt_not_ends_with", - "description": "mergedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "head", - "description": "head", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "head_not", - "description": "head_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "head_in", - "description": "head_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "head_not_in", - "description": "head_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "base", - "description": "base", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "base_not", - "description": "base_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "base_in", - "description": "base_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "base_not_in", - "description": "base_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeCommit", - "description": "mergeCommit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeCommit_not", - "description": "mergeCommit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeCommit_in", - "description": "mergeCommit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeCommit_not_in", - "description": "mergeCommit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author", - "description": "author", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_not", - "description": "author_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_in", - "description": "author_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author_not_in", - "description": "author_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merger", - "description": "merger", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merger_not", - "description": "merger_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merger_in", - "description": "merger_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merger_not_in", - "description": "merger_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees", - "description": "assignees", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_not", - "description": "assignees_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_in", - "description": "assignees_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_not_in", - "description": "assignees_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_some", - "description": "assignees_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_none", - "description": "assignees_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_single", - "description": "assignees_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assignees_every", - "description": "assignees_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not", - "description": "branch_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_in", - "description": "branch_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch_not_in", - "description": "branch_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sourceBranch", - "description": "sourceBranch", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sourceBranch_not", - "description": "sourceBranch_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sourceBranch_in", - "description": "sourceBranch_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sourceBranch_not_in", - "description": "sourceBranch_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "destinationBranch", - "description": "destinationBranch", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "destinationBranch_not", - "description": "destinationBranch_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "destinationBranch_in", - "description": "destinationBranch_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "destinationBranch_not_in", - "description": "destinationBranch_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels", - "description": "labels", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not", - "description": "labels_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_in", - "description": "labels_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_not_in", - "description": "labels_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_some", - "description": "labels_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_none", - "description": "labels_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_single", - "description": "labels_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labels_every", - "description": "labels_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews", - "description": "reviews", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_not", - "description": "reviews_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_in", - "description": "reviews_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_not_in", - "description": "reviews_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_some", - "description": "reviews_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_none", - "description": "reviews_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_single", - "description": "reviews_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviews_every", - "description": "reviews_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers", - "description": "reviewers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_not", - "description": "reviewers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_in", - "description": "reviewers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_not_in", - "description": "reviewers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_some", - "description": "reviewers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_none", - "description": "reviewers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_single", - "description": "reviewers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewers_every", - "description": "reviewers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy", - "description": "lastAssignedBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_not", - "description": "lastAssignedBy_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_in", - "description": "lastAssignedBy_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastAssignedBy_not_in", - "description": "lastAssignedBy_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments", - "description": "comments", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not", - "description": "comments_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_in", - "description": "comments_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not_in", - "description": "comments_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_some", - "description": "comments_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_none", - "description": "comments_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_single", - "description": "comments_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_every", - "description": "comments_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds", - "description": "builds", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not", - "description": "builds_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_in", - "description": "builds_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not_in", - "description": "builds_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_some", - "description": "builds_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_none", - "description": "builds_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_single", - "description": "builds_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_every", - "description": "builds_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "description": "Filter Input Type for Branch", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote_not", - "description": "isRemote_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_not", - "description": "remoteRepoHtmlUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_in", - "description": "remoteRepoHtmlUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_not_in", - "description": "remoteRepoHtmlUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_lt", - "description": "remoteRepoHtmlUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_lte", - "description": "remoteRepoHtmlUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_gt", - "description": "remoteRepoHtmlUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_gte", - "description": "remoteRepoHtmlUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_contains", - "description": "remoteRepoHtmlUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_not_contains", - "description": "remoteRepoHtmlUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_starts_with", - "description": "remoteRepoHtmlUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_not_starts_with", - "description": "remoteRepoHtmlUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_ends_with", - "description": "remoteRepoHtmlUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl_not_ends_with", - "description": "remoteRepoHtmlUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests", - "description": "pullRequests", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not", - "description": "pullRequests_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_in", - "description": "pullRequests_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not_in", - "description": "pullRequests_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_some", - "description": "pullRequests_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_none", - "description": "pullRequests_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_single", - "description": "pullRequests_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_every", - "description": "pullRequests_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "description": "Filter Input Type for Review", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not", - "description": "gitHubId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_in", - "description": "gitHubId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_in", - "description": "gitHubId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_lt", - "description": "gitHubId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_lte", - "description": "gitHubId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gt", - "description": "gitHubId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gte", - "description": "gitHubId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_contains", - "description": "gitHubId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_contains", - "description": "gitHubId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_starts_with", - "description": "gitHubId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_starts_with", - "description": "gitHubId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_ends_with", - "description": "gitHubId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_ends_with", - "description": "gitHubId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "reviewId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_not", - "description": "reviewId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_in", - "description": "reviewId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reviewId_not_in", - "description": "reviewId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reviewId_lt", - "description": "reviewId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_lte", - "description": "reviewId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_gt", - "description": "reviewId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_gte", - "description": "reviewId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_contains", - "description": "reviewId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_not_contains", - "description": "reviewId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_starts_with", - "description": "reviewId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_not_starts_with", - "description": "reviewId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_ends_with", - "description": "reviewId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId_not_ends_with", - "description": "reviewId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "body_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "body_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "body_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "body_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "body_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "body_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "body_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "body_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "body_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "body_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "body_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "body_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "body_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "submittedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_not", - "description": "submittedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_in", - "description": "submittedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "submittedAt_not_in", - "description": "submittedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "submittedAt_lt", - "description": "submittedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_lte", - "description": "submittedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_gt", - "description": "submittedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_gte", - "description": "submittedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_contains", - "description": "submittedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_not_contains", - "description": "submittedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_starts_with", - "description": "submittedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_not_starts_with", - "description": "submittedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_ends_with", - "description": "submittedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt_not_ends_with", - "description": "submittedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not", - "description": "htmlUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_in", - "description": "htmlUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_in", - "description": "htmlUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "htmlUrl_lt", - "description": "htmlUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_lte", - "description": "htmlUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_gt", - "description": "htmlUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_gte", - "description": "htmlUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_contains", - "description": "htmlUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_contains", - "description": "htmlUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_starts_with", - "description": "htmlUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_starts_with", - "description": "htmlUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_ends_with", - "description": "htmlUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_ends_with", - "description": "htmlUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by", - "description": "by", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_not", - "description": "by_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_in", - "description": "by_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_not_in", - "description": "by_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_some", - "description": "by_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_none", - "description": "by_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_single", - "description": "by_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_every", - "description": "by_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments", - "description": "comments", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not", - "description": "comments_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_in", - "description": "comments_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_not_in", - "description": "comments_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_some", - "description": "comments_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_none", - "description": "comments_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_single", - "description": "comments_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "comments_every", - "description": "comments_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "pullRequest", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not", - "description": "pullRequest_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_in", - "description": "pullRequest_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not_in", - "description": "pullRequest_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ReviewState", - "description": "Enum for ReviewState", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "requested", - "description": "Value for requested", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "Value for pending", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approved", - "description": "Value for approved", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commented", - "description": "Value for commented", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unapproved", - "description": "Value for unapproved", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "changes_requested", - "description": "Value for changes_requested", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "description": "Filter Input Type for Comment", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not", - "description": "body_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_in", - "description": "body_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_not_in", - "description": "body_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "body_lt", - "description": "body_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_lte", - "description": "body_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gt", - "description": "body_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_gte", - "description": "body_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_contains", - "description": "body_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_contains", - "description": "body_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_starts_with", - "description": "body_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_starts_with", - "description": "body_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_ends_with", - "description": "body_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body_not_ends_with", - "description": "body_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "createdAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "createdAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "createdAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "createdAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "createdAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "createdAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "createdAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_contains", - "description": "createdAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_contains", - "description": "createdAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_starts_with", - "description": "createdAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_starts_with", - "description": "createdAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_ends_with", - "description": "createdAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not_ends_with", - "description": "createdAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "updatedAt_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "updatedAt_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "updatedAt_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "updatedAt_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "updatedAt_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "updatedAt_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "updatedAt_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_contains", - "description": "updatedAt_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_contains", - "description": "updatedAt_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_starts_with", - "description": "updatedAt_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_starts_with", - "description": "updatedAt_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_ends_with", - "description": "updatedAt_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_ends_with", - "description": "updatedAt_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_not", - "description": "commentId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_in", - "description": "commentId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentId_not_in", - "description": "commentId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentId_lt", - "description": "commentId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_lte", - "description": "commentId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_gt", - "description": "commentId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_gte", - "description": "commentId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_contains", - "description": "commentId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_not_contains", - "description": "commentId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_starts_with", - "description": "commentId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_not_starts_with", - "description": "commentId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_ends_with", - "description": "commentId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId_not_ends_with", - "description": "commentId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not", - "description": "gitHubId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_in", - "description": "gitHubId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_in", - "description": "gitHubId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gitHubId_lt", - "description": "gitHubId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_lte", - "description": "gitHubId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gt", - "description": "gitHubId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_gte", - "description": "gitHubId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_contains", - "description": "gitHubId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_contains", - "description": "gitHubId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_starts_with", - "description": "gitHubId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_starts_with", - "description": "gitHubId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_ends_with", - "description": "gitHubId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId_not_ends_with", - "description": "gitHubId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not", - "description": "path_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_in", - "description": "path_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_not_in", - "description": "path_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "path_lt", - "description": "path_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_lte", - "description": "path_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gt", - "description": "path_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_gte", - "description": "path_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_contains", - "description": "path_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_contains", - "description": "path_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_starts_with", - "description": "path_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_starts_with", - "description": "path_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_ends_with", - "description": "path_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path_not_ends_with", - "description": "path_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_not", - "description": "position_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_in", - "description": "position_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "position_not_in", - "description": "position_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "position_lt", - "description": "position_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_lte", - "description": "position_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_gt", - "description": "position_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_gte", - "description": "position_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_contains", - "description": "position_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_not_contains", - "description": "position_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_starts_with", - "description": "position_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_not_starts_with", - "description": "position_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_ends_with", - "description": "position_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position_not_ends_with", - "description": "position_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not", - "description": "htmlUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_in", - "description": "htmlUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_in", - "description": "htmlUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "htmlUrl_lt", - "description": "htmlUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_lte", - "description": "htmlUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_gt", - "description": "htmlUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_gte", - "description": "htmlUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_contains", - "description": "htmlUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_contains", - "description": "htmlUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_starts_with", - "description": "htmlUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_starts_with", - "description": "htmlUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_ends_with", - "description": "htmlUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl_not_ends_with", - "description": "htmlUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType_not", - "description": "commentType_not", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType_in", - "description": "commentType_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "commentType_not_in", - "description": "commentType_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "issue", - "description": "issue", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_not", - "description": "issue_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_in", - "description": "issue_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "issue_not_in", - "description": "issue_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "review", - "description": "review", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "review_not", - "description": "review_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "review_in", - "description": "review_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "review_not_in", - "description": "review_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "pullRequest", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not", - "description": "pullRequest_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_in", - "description": "pullRequest_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not_in", - "description": "pullRequest_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by", - "description": "by", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_not", - "description": "by_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_in", - "description": "by_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "by_not_in", - "description": "by_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CommentCommentType", - "description": "Enum for CommentCommentType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "review", - "description": "Value for review", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Value for pullRequest", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "issue", - "description": "Value for issue", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "description": "Filter Input Type for Tag", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "description_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "description_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "description_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "description_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "description_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "description_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "description_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "description_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "description_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "description_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "description_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "description_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "description_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_not", - "description": "ref_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_in", - "description": "ref_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "ref_not_in", - "description": "ref_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "ref_lt", - "description": "ref_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_lte", - "description": "ref_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_gt", - "description": "ref_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_gte", - "description": "ref_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_contains", - "description": "ref_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_not_contains", - "description": "ref_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_starts_with", - "description": "ref_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_not_starts_with", - "description": "ref_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_ends_with", - "description": "ref_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref_not_ends_with", - "description": "ref_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release", - "description": "release", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not", - "description": "release_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_in", - "description": "release_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not_in", - "description": "release_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers", - "description": "containers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not", - "description": "containers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_in", - "description": "containers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not_in", - "description": "containers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_some", - "description": "containers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_none", - "description": "containers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_single", - "description": "containers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_every", - "description": "containers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds", - "description": "builds", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not", - "description": "builds_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_in", - "description": "builds_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not_in", - "description": "builds_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_some", - "description": "builds_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_none", - "description": "builds_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_single", - "description": "builds_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_every", - "description": "builds_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "description": "Filter Input Type for Release", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag", - "description": "tag", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_not", - "description": "tag_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_in", - "description": "tag_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tag_not_in", - "description": "tag_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "description": "Filter Input Type for DockerImage", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": "image", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "image_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "image_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "image_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "image_lt", - "description": "image_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_lte", - "description": "image_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gt", - "description": "image_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_gte", - "description": "image_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_contains", - "description": "image_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_contains", - "description": "image_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_starts_with", - "description": "image_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_starts_with", - "description": "image_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_ends_with", - "description": "image_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_ends_with", - "description": "image_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not", - "description": "imageName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_in", - "description": "imageName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "imageName_not_in", - "description": "imageName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "imageName_lt", - "description": "imageName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_lte", - "description": "imageName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_gt", - "description": "imageName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_gte", - "description": "imageName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_contains", - "description": "imageName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_contains", - "description": "imageName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_starts_with", - "description": "imageName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_starts_with", - "description": "imageName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_ends_with", - "description": "imageName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_ends_with", - "description": "imageName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods", - "description": "pods", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_not", - "description": "pods_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_in", - "description": "pods_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_not_in", - "description": "pods_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_some", - "description": "pods_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_none", - "description": "pods_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_single", - "description": "pods_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pods_every", - "description": "pods_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers", - "description": "containers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not", - "description": "containers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_in", - "description": "containers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not_in", - "description": "containers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_some", - "description": "containers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_none", - "description": "containers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_single", - "description": "containers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_every", - "description": "containers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "description": "Filter Input Type for K8Pod", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "phase", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_not", - "description": "phase_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_in", - "description": "phase_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phase_not_in", - "description": "phase_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "phase_lt", - "description": "phase_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_lte", - "description": "phase_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_gt", - "description": "phase_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_gte", - "description": "phase_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_contains", - "description": "phase_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_not_contains", - "description": "phase_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_starts_with", - "description": "phase_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_not_starts_with", - "description": "phase_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_ends_with", - "description": "phase_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase_not_ends_with", - "description": "phase_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not", - "description": "environment_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_in", - "description": "environment_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "environment_not_in", - "description": "environment_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "environment_lt", - "description": "environment_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_lte", - "description": "environment_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_gt", - "description": "environment_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_gte", - "description": "environment_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_contains", - "description": "environment_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_contains", - "description": "environment_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_starts_with", - "description": "environment_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_starts_with", - "description": "environment_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_ends_with", - "description": "environment_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_ends_with", - "description": "environment_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "baseName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_not", - "description": "baseName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_in", - "description": "baseName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "baseName_not_in", - "description": "baseName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "baseName_lt", - "description": "baseName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_lte", - "description": "baseName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_gt", - "description": "baseName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_gte", - "description": "baseName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_contains", - "description": "baseName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_not_contains", - "description": "baseName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_starts_with", - "description": "baseName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_not_starts_with", - "description": "baseName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_ends_with", - "description": "baseName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName_not_ends_with", - "description": "baseName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "namespace", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_not", - "description": "namespace_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_in", - "description": "namespace_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "namespace_not_in", - "description": "namespace_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "namespace_lt", - "description": "namespace_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_lte", - "description": "namespace_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_gt", - "description": "namespace_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_gte", - "description": "namespace_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_contains", - "description": "namespace_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_not_contains", - "description": "namespace_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_starts_with", - "description": "namespace_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_not_starts_with", - "description": "namespace_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_ends_with", - "description": "namespace_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace_not_ends_with", - "description": "namespace_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not", - "description": "statusJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_in", - "description": "statusJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_in", - "description": "statusJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "statusJSON_lt", - "description": "statusJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_lte", - "description": "statusJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_gt", - "description": "statusJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_gte", - "description": "statusJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_contains", - "description": "statusJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_contains", - "description": "statusJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_starts_with", - "description": "statusJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_starts_with", - "description": "statusJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_ends_with", - "description": "statusJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_ends_with", - "description": "statusJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not", - "description": "host_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_in", - "description": "host_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "host_not_in", - "description": "host_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "host_lt", - "description": "host_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_lte", - "description": "host_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_gt", - "description": "host_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_gte", - "description": "host_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_contains", - "description": "host_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_contains", - "description": "host_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_starts_with", - "description": "host_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_starts_with", - "description": "host_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_ends_with", - "description": "host_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_ends_with", - "description": "host_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_lt", - "description": "state_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_lte", - "description": "state_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gt", - "description": "state_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gte", - "description": "state_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_contains", - "description": "state_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_contains", - "description": "state_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_starts_with", - "description": "state_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_starts_with", - "description": "state_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_ends_with", - "description": "state_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_ends_with", - "description": "state_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "specsJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_not", - "description": "specsJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_in", - "description": "specsJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "specsJSON_not_in", - "description": "specsJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "specsJSON_lt", - "description": "specsJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_lte", - "description": "specsJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_gt", - "description": "specsJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_gte", - "description": "specsJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_contains", - "description": "specsJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_not_contains", - "description": "specsJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_starts_with", - "description": "specsJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_not_starts_with", - "description": "specsJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_ends_with", - "description": "specsJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON_not_ends_with", - "description": "specsJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON", - "description": "envJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_not", - "description": "envJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_in", - "description": "envJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "envJSON_not_in", - "description": "envJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "envJSON_lt", - "description": "envJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_lte", - "description": "envJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_gt", - "description": "envJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_gte", - "description": "envJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_contains", - "description": "envJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_not_contains", - "description": "envJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_starts_with", - "description": "envJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_not_starts_with", - "description": "envJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_ends_with", - "description": "envJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON_not_ends_with", - "description": "envJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_not", - "description": "metadataJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_in", - "description": "metadataJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "metadataJSON_not_in", - "description": "metadataJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "metadataJSON_lt", - "description": "metadataJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_lte", - "description": "metadataJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_gt", - "description": "metadataJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_gte", - "description": "metadataJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_contains", - "description": "metadataJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_not_contains", - "description": "metadataJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_starts_with", - "description": "metadataJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_not_starts_with", - "description": "metadataJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_ends_with", - "description": "metadataJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON_not_ends_with", - "description": "metadataJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff_not", - "description": "containersCrashLoopBackOff_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_not", - "description": "resourceVersion_not", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_in", - "description": "resourceVersion_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "resourceVersion_not_in", - "description": "resourceVersion_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "resourceVersion_lt", - "description": "resourceVersion_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_lte", - "description": "resourceVersion_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_gt", - "description": "resourceVersion_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_gte", - "description": "resourceVersion_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_not", - "description": "images_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_in", - "description": "images_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_not_in", - "description": "images_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_some", - "description": "images_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_none", - "description": "images_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_single", - "description": "images_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images_every", - "description": "images_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers", - "description": "containers", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not", - "description": "containers_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_in", - "description": "containers_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_not_in", - "description": "containers_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_some", - "description": "containers_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_none", - "description": "containers_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_single", - "description": "containers_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containers_every", - "description": "containers_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "Built-in Int", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "description": "Filter Input Type for K8Container", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not", - "description": "imageName_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_in", - "description": "imageName_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "imageName_not_in", - "description": "imageName_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "imageName_lt", - "description": "imageName_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_lte", - "description": "imageName_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_gt", - "description": "imageName_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_gte", - "description": "imageName_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_contains", - "description": "imageName_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_contains", - "description": "imageName_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_starts_with", - "description": "imageName_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_starts_with", - "description": "imageName_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_ends_with", - "description": "imageName_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName_not_ends_with", - "description": "imageName_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not", - "description": "environment_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_in", - "description": "environment_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "environment_not_in", - "description": "environment_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "environment_lt", - "description": "environment_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_lte", - "description": "environment_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_gt", - "description": "environment_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_gte", - "description": "environment_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_contains", - "description": "environment_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_contains", - "description": "environment_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_starts_with", - "description": "environment_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_starts_with", - "description": "environment_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_ends_with", - "description": "environment_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment_not_ends_with", - "description": "environment_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", - "description": "containerJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_not", - "description": "containerJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_in", - "description": "containerJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "containerJSON_not_in", - "description": "containerJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "containerJSON_lt", - "description": "containerJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_lte", - "description": "containerJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_gt", - "description": "containerJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_gte", - "description": "containerJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_contains", - "description": "containerJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_not_contains", - "description": "containerJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_starts_with", - "description": "containerJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_not_starts_with", - "description": "containerJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_ends_with", - "description": "containerJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON_not_ends_with", - "description": "containerJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_lt", - "description": "state_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_lte", - "description": "state_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gt", - "description": "state_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gte", - "description": "state_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_contains", - "description": "state_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_contains", - "description": "state_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_starts_with", - "description": "state_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_starts_with", - "description": "state_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_ends_with", - "description": "state_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_ends_with", - "description": "state_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason", - "description": "stateReason", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_not", - "description": "stateReason_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_in", - "description": "stateReason_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stateReason_not_in", - "description": "stateReason_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "stateReason_lt", - "description": "stateReason_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_lte", - "description": "stateReason_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_gt", - "description": "stateReason_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_gte", - "description": "stateReason_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_contains", - "description": "stateReason_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_not_contains", - "description": "stateReason_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_starts_with", - "description": "stateReason_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_not_starts_with", - "description": "stateReason_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_ends_with", - "description": "stateReason_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason_not_ends_with", - "description": "stateReason_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready", - "description": "ready", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready_not", - "description": "ready_not", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "restartCount", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount_not", - "description": "restartCount_not", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount_in", - "description": "restartCount_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "restartCount_not_in", - "description": "restartCount_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "restartCount_lt", - "description": "restartCount_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount_lte", - "description": "restartCount_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount_gt", - "description": "restartCount_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount_gte", - "description": "restartCount_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not", - "description": "statusJSON_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_in", - "description": "statusJSON_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_in", - "description": "statusJSON_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "statusJSON_lt", - "description": "statusJSON_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_lte", - "description": "statusJSON_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_gt", - "description": "statusJSON_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_gte", - "description": "statusJSON_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_contains", - "description": "statusJSON_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_contains", - "description": "statusJSON_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_starts_with", - "description": "statusJSON_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_starts_with", - "description": "statusJSON_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_ends_with", - "description": "statusJSON_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON_not_ends_with", - "description": "statusJSON_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_not", - "description": "resourceVersion_not", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_in", - "description": "resourceVersion_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "resourceVersion_not_in", - "description": "resourceVersion_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "resourceVersion_lt", - "description": "resourceVersion_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_lte", - "description": "resourceVersion_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_gt", - "description": "resourceVersion_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion_gte", - "description": "resourceVersion_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", - "description": "containerID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_not", - "description": "containerID_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_in", - "description": "containerID_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "containerID_not_in", - "description": "containerID_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "containerID_lt", - "description": "containerID_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_lte", - "description": "containerID_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_gt", - "description": "containerID_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_gte", - "description": "containerID_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_contains", - "description": "containerID_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_not_contains", - "description": "containerID_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_starts_with", - "description": "containerID_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_not_starts_with", - "description": "containerID_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_ends_with", - "description": "containerID_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID_not_ends_with", - "description": "containerID_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": "image", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "image_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "image_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "image_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pod", - "description": "pod", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pod_not", - "description": "pod_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pod_in", - "description": "pod_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pod_not_in", - "description": "pod_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "description": "Filter Input Type for Workflow", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not", - "description": "workflowId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_in", - "description": "workflowId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "workflowId_not_in", - "description": "workflowId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "workflowId_lt", - "description": "workflowId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_lte", - "description": "workflowId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_gt", - "description": "workflowId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_gte", - "description": "workflowId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_contains", - "description": "workflowId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_contains", - "description": "workflowId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_starts_with", - "description": "workflowId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_starts_with", - "description": "workflowId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_ends_with", - "description": "workflowId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId_not_ends_with", - "description": "workflowId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not", - "description": "provider_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_in", - "description": "provider_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_not_in", - "description": "provider_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "provider_lt", - "description": "provider_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_lte", - "description": "provider_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gt", - "description": "provider_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_gte", - "description": "provider_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_contains", - "description": "provider_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_contains", - "description": "provider_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_starts_with", - "description": "provider_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_starts_with", - "description": "provider_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_ends_with", - "description": "provider_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider_not_ends_with", - "description": "provider_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config", - "description": "config", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_not", - "description": "config_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_in", - "description": "config_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "config_not_in", - "description": "config_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "config_lt", - "description": "config_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_lte", - "description": "config_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_gt", - "description": "config_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_gte", - "description": "config_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_contains", - "description": "config_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_not_contains", - "description": "config_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_starts_with", - "description": "config_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_not_starts_with", - "description": "config_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_ends_with", - "description": "config_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config_not_ends_with", - "description": "config_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds", - "description": "builds", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not", - "description": "builds_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_in", - "description": "builds_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_not_in", - "description": "builds_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_some", - "description": "builds_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_none", - "description": "builds_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_single", - "description": "builds_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "builds_every", - "description": "builds_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "description": "Filter Input Type for Status", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "description_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "description_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "description_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "description_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "description_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "description_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "description_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "description_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "description_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "description_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "description_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "description_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "description_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl", - "description": "targetUrl", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_not", - "description": "targetUrl_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_in", - "description": "targetUrl_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "targetUrl_not_in", - "description": "targetUrl_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "targetUrl_lt", - "description": "targetUrl_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_lte", - "description": "targetUrl_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_gt", - "description": "targetUrl_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_gte", - "description": "targetUrl_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_contains", - "description": "targetUrl_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_not_contains", - "description": "targetUrl_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_starts_with", - "description": "targetUrl_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_not_starts_with", - "description": "targetUrl_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_ends_with", - "description": "targetUrl_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl_not_ends_with", - "description": "targetUrl_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context", - "description": "context", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_not", - "description": "context_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_in", - "description": "context_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "context_not_in", - "description": "context_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "context_lt", - "description": "context_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_lte", - "description": "context_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_gt", - "description": "context_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_gte", - "description": "context_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_contains", - "description": "context_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_not_contains", - "description": "context_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_starts_with", - "description": "context_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_not_starts_with", - "description": "context_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_ends_with", - "description": "context_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context_not_ends_with", - "description": "context_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StatusState", - "description": "Enum for StatusState", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "pending", - "description": "Value for pending", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": "Value for success", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": "Value for error", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failure", - "description": "Value for failure", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "description": "Filter Input Type for HerokuApp", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app", - "description": "app", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_not", - "description": "app_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_in", - "description": "app_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "app_not_in", - "description": "app_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "app_lt", - "description": "app_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_lte", - "description": "app_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_gt", - "description": "app_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_gte", - "description": "app_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_contains", - "description": "app_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_not_contains", - "description": "app_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_starts_with", - "description": "app_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_not_starts_with", - "description": "app_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_ends_with", - "description": "app_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "app_not_ends_with", - "description": "app_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "user", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not", - "description": "user_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_in", - "description": "user_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_not_in", - "description": "user_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_lt", - "description": "user_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_lte", - "description": "user_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gt", - "description": "user_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gte", - "description": "user_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_contains", - "description": "user_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_contains", - "description": "user_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_starts_with", - "description": "user_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_starts_with", - "description": "user_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_ends_with", - "description": "user_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_ends_with", - "description": "user_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "appId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_not", - "description": "appId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_in", - "description": "appId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "appId_not_in", - "description": "appId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "appId_lt", - "description": "appId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_lte", - "description": "appId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_gt", - "description": "appId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_gte", - "description": "appId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_contains", - "description": "appId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_not_contains", - "description": "appId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_starts_with", - "description": "appId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_not_starts_with", - "description": "appId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_ends_with", - "description": "appId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId_not_ends_with", - "description": "appId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release", - "description": "release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not", - "description": "release_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_in", - "description": "release_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "release_not_in", - "description": "release_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "release_lt", - "description": "release_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_lte", - "description": "release_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_gt", - "description": "release_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_gte", - "description": "release_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_contains", - "description": "release_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not_contains", - "description": "release_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_starts_with", - "description": "release_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not_starts_with", - "description": "release_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_ends_with", - "description": "release_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_not_ends_with", - "description": "release_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "description": "Filter Input Type for Application", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not", - "description": "state_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_in", - "description": "state_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_not_in", - "description": "state_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "state_lt", - "description": "state_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_lte", - "description": "state_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gt", - "description": "state_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_gte", - "description": "state_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_contains", - "description": "state_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_contains", - "description": "state_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_starts_with", - "description": "state_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_starts_with", - "description": "state_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_ends_with", - "description": "state_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state_not_ends_with", - "description": "state_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not", - "description": "host_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_in", - "description": "host_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "host_not_in", - "description": "host_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "host_lt", - "description": "host_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_lte", - "description": "host_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_gt", - "description": "host_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_gte", - "description": "host_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_contains", - "description": "host_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_contains", - "description": "host_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_starts_with", - "description": "host_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_starts_with", - "description": "host_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_ends_with", - "description": "host_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host_not_ends_with", - "description": "host_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not", - "description": "domain_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_in", - "description": "domain_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_not_in", - "description": "domain_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "domain_lt", - "description": "domain_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_lte", - "description": "domain_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gt", - "description": "domain_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_gte", - "description": "domain_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_contains", - "description": "domain_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_contains", - "description": "domain_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_starts_with", - "description": "domain_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_starts_with", - "description": "domain_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_ends_with", - "description": "domain_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain_not_ends_with", - "description": "domain_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "description": "Filter Input Type for Fingerprint", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "sha", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not", - "description": "sha_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_in", - "description": "sha_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha_not_in", - "description": "sha_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sha_lt", - "description": "sha_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_lte", - "description": "sha_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_gt", - "description": "sha_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_gte", - "description": "sha_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_contains", - "description": "sha_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_contains", - "description": "sha_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_starts_with", - "description": "sha_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_starts_with", - "description": "sha_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_ends_with", - "description": "sha_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha_not_ends_with", - "description": "sha_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "description": "Filter Input Type for ParentImpact", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits", - "description": "commits", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not", - "description": "commits_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_in", - "description": "commits_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_not_in", - "description": "commits_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "commits_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_none", - "description": "commits_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_single", - "description": "commits_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_every", - "description": "commits_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_LabelOrdering", - "description": "Ordering Enum for Label", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_asc", - "description": "Ascending sort for default", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_desc", - "description": "Descending sort for default", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "color_asc", - "description": "Ascending sort for color", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "color_desc", - "description": "Descending sort for color", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatChannel", - "description": "ChatChannel-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": "ChatChannel createdBy ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repos", - "description": "ChatChannel repos Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "links", - "description": "ChatChannel links ChannelLink", - "args": [ - { - "name": "id", - "description": "id of ChannelLink", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChannelLink", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "ChatChannel members ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "ChatChannel team ChatTeam", - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatId", - "description": "ChatId-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channels", - "description": "ChatId channels ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "ChatId emails Email", - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatTeam", - "description": "ChatId chatTeam ChatTeam", - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelsCreated", - "description": "ChatId channelsCreated ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "person", - "description": "ChatId person Person", - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preferences", - "description": "Return a user's preferences", - "args": [], - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "UserPreference" - } - } - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "description": "Ordering Enum for ChatChannel", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName_asc", - "description": "Ascending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName_desc", - "description": "Descending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId_asc", - "description": "Ascending sort for channelId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId_desc", - "description": "Descending sort for channelId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault_asc", - "description": "Ascending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault_desc", - "description": "Descending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf_asc", - "description": "Ascending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf_desc", - "description": "Descending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Email", - "description": "Email-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address", - "description": "address of Email", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmId", - "description": "Email scmId SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "Email gitHubId GitHubId", - "args": [ - { - "name": "login", - "description": "login of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatId", - "description": "Email chatId ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "person", - "description": "Email person Person", - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMId", - "description": "SCMId-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login", - "description": "login of SCMId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of SCMId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "SCMId provider GitHubProvider", - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProvider", - "description": "SCMId scmProvider SCMProvider", - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "SCMId emails Email", - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "person", - "description": "SCMId person Person", - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubProvider", - "description": "GitHubProvider-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of GitHubProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "args": [], - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "GitHubProvider team Team", - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Team", - "description": "Team-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "description of Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "persons", - "description": "Team persons Person", - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orgs", - "description": "Team orgs Org", - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providers", - "description": "Team providers GitHubProvider", - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProviders", - "description": "Team scmProviders SCMProvider", - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatTeams", - "description": "Team chatTeams ChatTeam", - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Person", - "description": "Person-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename", - "description": "forename of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname", - "description": "surname of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmId", - "description": "Person scmId SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "Person gitHubId GitHubId", - "args": [ - { - "name": "login", - "description": "login of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatId", - "description": "Person chatId ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "Person emails Email", - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "Person team Team", - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preferences", - "description": "Return a person's preferences", - "args": [], - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "PersonPreference" - } - } - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "description": "Ordering Enum for SCMId", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login_asc", - "description": "Ascending sort for login", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login_desc", - "description": "Descending sort for login", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubId", - "description": "GitHubId-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login", - "description": "login of GitHubId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of GitHubId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "GitHubId provider GitHubProvider", - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProvider", - "description": "GitHubId scmProvider SCMProvider", - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "GitHubId emails Email", - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "person", - "description": "GitHubId person Person", - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "description": "Ordering Enum for GitHubProvider", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_asc", - "description": "Ascending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_desc", - "description": "Descending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_asc", - "description": "Ascending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_desc", - "description": "Descending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMProvider", - "description": "SCMProvider-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "args": [], - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "SCMProvider team Team", - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_TeamOrdering", - "description": "Ordering Enum for Team", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_asc", - "description": "Ascending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_desc", - "description": "Descending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "iconUrl_asc", - "description": "Ascending sort for iconUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "iconUrl_desc", - "description": "Descending sort for iconUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "description": "Ordering Enum for SCMProvider", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_asc", - "description": "Ascending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_desc", - "description": "Descending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_asc", - "description": "Ascending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_desc", - "description": "Descending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_EmailOrdering", - "description": "Ordering Enum for Email", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_asc", - "description": "Ascending sort for address", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_desc", - "description": "Descending sort for address", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PersonOrdering", - "description": "Ordering Enum for Person", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename_asc", - "description": "Ascending sort for forename", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename_desc", - "description": "Descending sort for forename", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname_asc", - "description": "Ascending sort for surname", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname_desc", - "description": "Descending sort for surname", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "description": "Ordering Enum for GitHubId", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login_asc", - "description": "Ascending sort for login", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login_desc", - "description": "Descending sort for login", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "description": "Ordering Enum for ChatId", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "screenName_asc", - "description": "Ascending sort for screenName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "screenName_desc", - "description": "Descending sort for screenName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId_asc", - "description": "Ascending sort for userId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId_desc", - "description": "Descending sort for userId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAtomistBot_asc", - "description": "Ascending sort for isAtomistBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAtomistBot_desc", - "description": "Descending sort for isAtomistBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOwner_asc", - "description": "Ascending sort for isOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOwner_desc", - "description": "Descending sort for isOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrimaryOwner_asc", - "description": "Ascending sort for isPrimaryOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrimaryOwner_desc", - "description": "Descending sort for isPrimaryOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin_asc", - "description": "Ascending sort for isAdmin", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin_desc", - "description": "Descending sort for isAdmin", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBot_asc", - "description": "Ascending sort for isBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isBot_desc", - "description": "Descending sort for isBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timezoneLabel_asc", - "description": "Ascending sort for timezoneLabel", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timezoneLabel_desc", - "description": "Descending sort for timezoneLabel", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Org", - "description": "Org-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Org", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": "owner of Org", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "args": [], - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "Org provider GitHubProvider", - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProvider", - "description": "Org scmProvider SCMProvider", - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Org repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repos", - "description": "Org repos Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhook", - "description": "Org webhook GitHubOrgWebhook", - "args": [ - { - "name": "id", - "description": "id of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of GitHubOrgWebhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubOrgWebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubOrgWebhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhooks", - "description": "Org webhooks Webhook", - "args": [ - { - "name": "id", - "description": "id of Webhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of Webhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of Webhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatTeam", - "description": "Org chatTeam ChatTeam", - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "Org team Team", - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubOrgWebhook", - "description": "GitHubOrgWebhook-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of GitHubOrgWebhook", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of GitHubOrgWebhook", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType", - "description": "webhookType of GitHubOrgWebhook", - "args": [], - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "org", - "description": "GitHubOrgWebhook org Org", - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_OrgOrdering", - "description": "Ordering Enum for Org", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_asc", - "description": "Ascending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_desc", - "description": "Descending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerType_asc", - "description": "Ascending sort for ownerType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerType_desc", - "description": "Descending sort for ownerType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_GitHubOrgWebhookOrdering", - "description": "Ordering Enum for GitHubOrgWebhook", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType_asc", - "description": "Ascending sort for webhookType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType_desc", - "description": "Descending sort for webhookType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Webhook", - "description": "Webhook-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Webhook", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of Webhook", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType", - "description": "webhookType of Webhook", - "args": [], - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "org", - "description": "Webhook org Org", - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Webhook repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_WebhookOrdering", - "description": "Ordering Enum for Webhook", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType_asc", - "description": "Ascending sort for webhookType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhookType_desc", - "description": "Descending sort for webhookType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatTeam", - "description": "ChatTeam-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orgs", - "description": "ChatTeam orgs Org", - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providers", - "description": "ChatTeam providers GitHubProvider", - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProviders", - "description": "ChatTeam scmProviders SCMProvider", - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channels", - "description": "ChatTeam channels ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "members", - "description": "ChatTeam members ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "ChatTeam team Team", - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preferences", - "description": "Return a chat team's preferences", - "args": [], - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "TeamPreference" - } - } - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "description": "Ordering Enum for ChatTeam", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_asc", - "description": "Ascending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_desc", - "description": "Descending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount_asc", - "description": "Ascending sort for messageCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount_desc", - "description": "Descending sort for messageCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain_asc", - "description": "Ascending sort for emailDomain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain_desc", - "description": "Descending sort for emailDomain", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelLink", - "description": "ChannelLink-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ChannelLink", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channel", - "description": "ChannelLink channel ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "ChannelLink repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "description": "Ordering Enum for ChannelLink", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_IssueOrdering", - "description": "Ordering Enum for Issue", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_asc", - "description": "Ascending sort for number", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_desc", - "description": "Descending sort for number", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_asc", - "description": "Ascending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_desc", - "description": "Descending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_asc", - "description": "Ascending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_desc", - "description": "Descending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_asc", - "description": "Ascending sort for action", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action_desc", - "description": "Descending sort for action", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "description": "PullRequest-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "number of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": "body of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": "title of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "PullRequest repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "head", - "description": "PullRequest head Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "base", - "description": "PullRequest base Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergeCommit", - "description": "PullRequest mergeCommit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": "PullRequest author SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merger", - "description": "PullRequest merger SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignees", - "description": "PullRequest assignees SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "PullRequest commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch", - "description": "PullRequest branch Branch", - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sourceBranch", - "description": "PullRequest sourceBranch Branch", - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "destinationBranch", - "description": "PullRequest destinationBranch Branch", - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labels", - "description": "PullRequest labels Label", - "args": [ - { - "name": "id", - "description": "id of Label", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", - "description": "defaults is list variant of default of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", - "description": "colors is list variant of color of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviews", - "description": "PullRequest reviews Review", - "args": [ - { - "name": "id", - "description": "id of Review", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "reviewId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Review", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "submittedAt of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reviewIds", - "description": "reviewIds is list variant of reviewId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "submittedAts", - "description": "submittedAts is list variant of submittedAt of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewers", - "description": "PullRequest reviewers SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastAssignedBy", - "description": "PullRequest lastAssignedBy SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comments", - "description": "PullRequest comments Comment", - "args": [ - { - "name": "id", - "description": "id of Comment", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "commentIds is list variant of commentId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "paths", - "description": "paths is list variant of path of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "positions", - "description": "positions is list variant of position of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentTypes", - "description": "commentTypes is list variant of commentType of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "PullRequest builds Build", - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Commit", - "description": "Commit-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha", - "description": "sha of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": "message of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "Commit email Email", - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Commit builds Build", - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Commit repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": "Commit author SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "committer", - "description": "Commit committer SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": "Commit tags Tag", - "args": [ - { - "name": "id", - "description": "id of Tag", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", - "description": "refs is list variant of ref of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TagOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resolves", - "description": "Commit resolves Issue", - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statuses", - "description": "Commit statuses Status", - "args": [ - { - "name": "id", - "description": "id of Status", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Status", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl", - "description": "targetUrl of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context", - "description": "context of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "targetUrls", - "description": "targetUrls is list variant of targetUrl of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "contexts", - "description": "contexts is list variant of context of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pushes", - "description": "Commit pushes Push", - "args": [ - { - "name": "id", - "description": "id of Push", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchs", - "description": "branchs is list variant of branch of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequests", - "description": "Commit pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "herokuApps", - "description": "Commit herokuApps HerokuApp", - "args": [ - { - "name": "app", - "description": "app of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "user of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "appId of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release", - "description": "release of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps", - "description": "apps is list variant of app of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "users", - "description": "users is list variant of user of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "appIds", - "description": "appIds is list variant of appId of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "releases", - "description": "releases is list variant of release of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_HerokuAppOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HerokuApp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apps", - "description": "Commit apps Application", - "args": [ - { - "name": "id", - "description": "id of Application", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fingerprints", - "description": "Commit fingerprints Fingerprint", - "args": [ - { - "name": "name", - "description": "name of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "sha of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Fingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "impact", - "description": "Commit impact ParentImpact", - "args": [ - { - "name": "id", - "description": "id of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ParentImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ParentImpact", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "Commit image DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "images", - "description": "Commit images DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sentryAlerts", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SentryAlert" - } - } - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Build", - "description": "Build-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "status of Build", - "args": [], - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "args": [], - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Build repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": "Build push Push", - "args": [ - { - "name": "id", - "description": "id of Push", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchs", - "description": "branchs is list variant of branch of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Build pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag", - "description": "Build tag Tag", - "args": [ - { - "name": "id", - "description": "id of Tag", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", - "description": "refs is list variant of ref of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TagOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Build commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflow", - "description": "Build workflow Workflow", - "args": [ - { - "name": "id", - "description": "id of Workflow", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config", - "description": "config of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "configs", - "description": "configs is list variant of config of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WorkflowOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Push", - "description": "Push-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Push", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch", - "description": "branch of Push", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "after", - "description": "Push after Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Push before Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "Push commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Push repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Push builds Build", - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "goals", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoal" - } - } - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_CommitOrdering", - "description": "Ordering Enum for Commit", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_asc", - "description": "Ascending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_desc", - "description": "Descending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message_asc", - "description": "Ascending sort for message", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message_desc", - "description": "Descending sort for message", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_BuildOrdering", - "description": "Ordering Enum for Build", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildId_asc", - "description": "Ascending sort for buildId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildId_desc", - "description": "Descending sort for buildId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_asc", - "description": "Ascending sort for status", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status_desc", - "description": "Descending sort for status", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildUrl_asc", - "description": "Ascending sort for buildUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "buildUrl_desc", - "description": "Descending sort for buildUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compareUrl_asc", - "description": "Ascending sort for compareUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compareUrl_desc", - "description": "Descending sort for compareUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_asc", - "description": "Ascending sort for trigger", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trigger_desc", - "description": "Descending sort for trigger", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequestNumber_asc", - "description": "Ascending sort for pullRequestNumber", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequestNumber_desc", - "description": "Descending sort for pullRequestNumber", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt_asc", - "description": "Ascending sort for startedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startedAt_desc", - "description": "Descending sort for startedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "finishedAt_asc", - "description": "Ascending sort for finishedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "finishedAt_desc", - "description": "Descending sort for finishedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobName_asc", - "description": "Ascending sort for jobName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobName_desc", - "description": "Descending sort for jobName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobId_asc", - "description": "Ascending sort for jobId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobId_desc", - "description": "Descending sort for jobId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PushOrdering", - "description": "Ordering Enum for Push", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_asc", - "description": "Ascending sort for branch", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch_desc", - "description": "Descending sort for branch", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "description": "Ordering Enum for PullRequest", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_asc", - "description": "Ascending sort for number", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number_desc", - "description": "Descending sort for number", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prId_asc", - "description": "Ascending sort for prId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prId_desc", - "description": "Descending sort for prId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_asc", - "description": "Ascending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_desc", - "description": "Descending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged_asc", - "description": "Ascending sort for merged", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged_desc", - "description": "Descending sort for merged", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName_asc", - "description": "Ascending sort for baseBranchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName_desc", - "description": "Descending sort for baseBranchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName_asc", - "description": "Ascending sort for branchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName_desc", - "description": "Descending sort for branchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_asc", - "description": "Ascending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_desc", - "description": "Descending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt_asc", - "description": "Ascending sort for mergedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt_desc", - "description": "Descending sort for mergedAt", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tag", - "description": "Tag-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Tag", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Tag", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "description of Tag", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ref", - "description": "ref of Tag", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "release", - "description": "Tag release Release", - "args": [ - { - "name": "id", - "description": "id of Release", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReleaseOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Tag commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containers", - "description": "Tag containers DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Tag builds Build", - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Release", - "description": "Release-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Release", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Release", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Release", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tag", - "description": "Release tag Tag", - "args": [ - { - "name": "id", - "description": "id of Tag", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", - "description": "refs is list variant of ref of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TagOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_TagOrdering", - "description": "Ordering Enum for Tag", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_asc", - "description": "Ascending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_desc", - "description": "Descending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ref_asc", - "description": "Ascending sort for ref", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ref_desc", - "description": "Descending sort for ref", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ReleaseOrdering", - "description": "Ordering Enum for Release", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DockerImage", - "description": "DockerImage-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "image of DockerImage", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pods", - "description": "DockerImage pods K8Pod", - "args": [ - { - "name": "name", - "description": "name of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "phases", - "description": "phases is list variant of phase of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseNames", - "description": "baseNames is list variant of baseName of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "namespaces", - "description": "namespaces is list variant of namespace of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "specsJSONs", - "description": "specsJSONs is list variant of specsJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "envJSONs", - "description": "envJSONs is list variant of envJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "metadataJSONs", - "description": "metadataJSONs is list variant of metadataJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOffs", - "description": "containersCrashLoopBackOffs is list variant of containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8PodOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "DockerImage commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containers", - "description": "DockerImage containers K8Container", - "args": [ - { - "name": "name", - "description": "name of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason", - "description": "stateReason of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready", - "description": "ready of K8Container", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "restartCount of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", - "description": "containerID of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerJSONs", - "description": "containerJSONs is list variant of containerJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "stateReasons", - "description": "stateReasons is list variant of stateReason of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "readys", - "description": "readys is list variant of ready of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "restartCounts", - "description": "restartCounts is list variant of restartCount of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerIDs", - "description": "containerIDs is list variant of containerID of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "K8Pod", - "description": "K8Pod-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": "host of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "images", - "description": "K8Pod images DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containers", - "description": "K8Pod containers K8Container", - "args": [ - { - "name": "name", - "description": "name of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason", - "description": "stateReason of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready", - "description": "ready of K8Container", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "restartCount of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", - "description": "containerID of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerJSONs", - "description": "containerJSONs is list variant of containerJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "stateReasons", - "description": "stateReasons is list variant of stateReason of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "readys", - "description": "readys is list variant of ready of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "restartCounts", - "description": "restartCounts is list variant of restartCount of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerIDs", - "description": "containerIDs is list variant of containerID of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "description": "Ordering Enum for DockerImage", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_asc", - "description": "Ascending sort for image", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image_desc", - "description": "Descending sort for image", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName_asc", - "description": "Ascending sort for imageName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName_desc", - "description": "Descending sort for imageName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "K8Container", - "description": "K8Container-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName", - "description": "imageName of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": "environment of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateReason", - "description": "stateReason of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ready", - "description": "ready of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "restartCount", - "description": "restartCount of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerID", - "description": "containerID of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "K8Container image DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pod", - "description": "K8Container pod K8Pod", - "args": [ - { - "name": "name", - "description": "name of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "phases", - "description": "phases is list variant of phase of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseNames", - "description": "baseNames is list variant of baseName of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "namespaces", - "description": "namespaces is list variant of namespace of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "specsJSONs", - "description": "specsJSONs is list variant of specsJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "envJSONs", - "description": "envJSONs is list variant of envJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "metadataJSONs", - "description": "metadataJSONs is list variant of metadataJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOffs", - "description": "containersCrashLoopBackOffs is list variant of containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8PodOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_K8PodOrdering", - "description": "Ordering Enum for K8Pod", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_asc", - "description": "Ascending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_desc", - "description": "Descending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_asc", - "description": "Ascending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_desc", - "description": "Descending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_asc", - "description": "Ascending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_desc", - "description": "Descending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_asc", - "description": "Ascending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_desc", - "description": "Descending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_asc", - "description": "Ascending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_desc", - "description": "Descending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON_asc", - "description": "Ascending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON_desc", - "description": "Descending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_asc", - "description": "Ascending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_desc", - "description": "Descending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON_asc", - "description": "Ascending sort for metadataJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON_desc", - "description": "Descending sort for metadataJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff_asc", - "description": "Ascending sort for containersCrashLoopBackOff", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff_desc", - "description": "Descending sort for containersCrashLoopBackOff", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "description": "Ordering Enum for K8Container", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName_asc", - "description": "Ascending sort for imageName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageName_desc", - "description": "Descending sort for imageName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_asc", - "description": "Ascending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_desc", - "description": "Descending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerJSON_asc", - "description": "Ascending sort for containerJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerJSON_desc", - "description": "Descending sort for containerJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateReason_asc", - "description": "Ascending sort for stateReason", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateReason_desc", - "description": "Descending sort for stateReason", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ready_asc", - "description": "Ascending sort for ready", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ready_desc", - "description": "Descending sort for ready", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "restartCount_asc", - "description": "Ascending sort for restartCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "restartCount_desc", - "description": "Descending sort for restartCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerID_asc", - "description": "Ascending sort for containerID", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containerID_desc", - "description": "Descending sort for containerID", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Workflow", - "description": "Workflow-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": "workflowId of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "config", - "description": "config of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Workflow builds Build", - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_WorkflowOrdering", - "description": "Ordering Enum for Workflow", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "config_asc", - "description": "Ascending sort for config", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "config_desc", - "description": "Descending sort for config", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Status", - "description": "Status-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of Status", - "args": [], - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "description of Status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUrl", - "description": "targetUrl of Status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context", - "description": "context of Status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Status", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Status commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_StatusOrdering", - "description": "Ordering Enum for Status", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_asc", - "description": "Ascending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_desc", - "description": "Descending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUrl_asc", - "description": "Ascending sort for targetUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUrl_desc", - "description": "Descending sort for targetUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context_asc", - "description": "Ascending sort for context", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context_desc", - "description": "Descending sort for context", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HerokuApp", - "description": "HerokuApp-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app", - "description": "app of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "user of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appId", - "description": "appId of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "release", - "description": "release of HerokuApp", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "HerokuApp commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_HerokuAppOrdering", - "description": "Ordering Enum for HerokuApp", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_asc", - "description": "Ascending sort for app", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "app_desc", - "description": "Descending sort for app", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_asc", - "description": "Ascending sort for user", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user_desc", - "description": "Descending sort for user", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appId_asc", - "description": "Ascending sort for appId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "appId_desc", - "description": "Descending sort for appId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "release_asc", - "description": "Ascending sort for release", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "release_desc", - "description": "Descending sort for release", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Application", - "description": "Application-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": "host of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain", - "description": "domain of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of Application", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "Application commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "description": "Ordering Enum for Application", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_asc", - "description": "Ascending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_desc", - "description": "Descending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_asc", - "description": "Ascending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_desc", - "description": "Descending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Fingerprint", - "description": "Fingerprint-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha", - "description": "sha of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Fingerprint commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "description": "Ordering Enum for Fingerprint", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_asc", - "description": "Ascending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_desc", - "description": "Descending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ParentImpact", - "description": "ParentImpact-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ParentImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of ParentImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of ParentImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "ParentImpact commits Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "ParentImpact commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ParentImpactOrdering", - "description": "Ordering Enum for ParentImpact", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Branch", - "description": "Branch-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Branch repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Branch commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequests", - "description": "Branch pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_BranchOrdering", - "description": "Ordering Enum for Branch", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRemote_asc", - "description": "Ascending sort for isRemote", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRemote_desc", - "description": "Descending sort for isRemote", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "remoteRepoHtmlUrl_asc", - "description": "Ascending sort for remoteRepoHtmlUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "remoteRepoHtmlUrl_desc", - "description": "Descending sort for remoteRepoHtmlUrl", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Review", - "description": "Review-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewId", - "description": "reviewId of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": "body of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of Review", - "args": [], - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submittedAt", - "description": "submittedAt of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "by", - "description": "Review by SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Review commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comments", - "description": "Review comments Comment", - "args": [ - { - "name": "id", - "description": "id of Comment", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "commentIds is list variant of commentId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "paths", - "description": "paths is list variant of path of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "positions", - "description": "positions is list variant of position of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentTypes", - "description": "commentTypes is list variant of commentType of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Review pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Comment", - "description": "Comment-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": "body of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": "path of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position", - "description": "position of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "args": [], - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "issue", - "description": "Comment issue Issue", - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review", - "description": "Comment review Review", - "args": [ - { - "name": "id", - "description": "id of Review", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "reviewId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Review", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "submittedAt of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reviewIds", - "description": "reviewIds is list variant of reviewId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "submittedAts", - "description": "submittedAts is list variant of submittedAt of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Comment pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "by", - "description": "Comment by SCMId", - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ReviewOrdering", - "description": "Ordering Enum for Review", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewId_asc", - "description": "Ascending sort for reviewId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewId_desc", - "description": "Descending sort for reviewId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_asc", - "description": "Ascending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_desc", - "description": "Descending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submittedAt_asc", - "description": "Ascending sort for submittedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submittedAt_desc", - "description": "Descending sort for submittedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_CommentOrdering", - "description": "Ordering Enum for Comment", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_asc", - "description": "Ascending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body_desc", - "description": "Descending sort for body", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentId_asc", - "description": "Ascending sort for commentId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentId_desc", - "description": "Descending sort for commentId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_asc", - "description": "Ascending sort for path", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path_desc", - "description": "Descending sort for path", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position_asc", - "description": "Ascending sort for position", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "position_desc", - "description": "Descending sort for position", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentType_asc", - "description": "Ascending sort for commentType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commentType_desc", - "description": "Descending sort for commentType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeletedBranch", - "description": "DeletedBranch-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of DeletedBranch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of DeletedBranch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of DeletedBranch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "DeletedBranch repo Repo", - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "DeletedBranch commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequests", - "description": "DeletedBranch pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "description": "Ordering Enum for DeletedBranch", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_DeletedBranchFilter", - "description": "Filter Input Type for DeletedBranch", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_DeletedBranchFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_DeletedBranchFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "name_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "name_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "name_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "name_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "name_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "name_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "name_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "name_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "name_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "name_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "name_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "repo", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not", - "description": "repo_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_in", - "description": "repo_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo_not_in", - "description": "repo_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests", - "description": "pullRequests", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not", - "description": "pullRequests_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_in", - "description": "pullRequests_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_not_in", - "description": "pullRequests_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_some", - "description": "pullRequests_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_none", - "description": "pullRequests_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_single", - "description": "pullRequests_single", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequests_every", - "description": "pullRequests_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImageLinked", - "description": "ImageLinked-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of ImageLinked", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "ImageLinked image DockerImage", - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "ImageLinked commit Commit", - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "description": "Ordering Enum for ImageLinked", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_ImageLinkedFilter", - "description": "Filter Input Type for ImageLinked", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ImageLinkedFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_ImageLinkedFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": "timestamp_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": "timestamp_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": "timestamp_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": "timestamp_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": "timestamp_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": "timestamp_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": "timestamp_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_contains", - "description": "timestamp_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_contains", - "description": "timestamp_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_starts_with", - "description": "timestamp_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_starts_with", - "description": "timestamp_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_ends_with", - "description": "timestamp_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not_ends_with", - "description": "timestamp_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image", - "description": "image", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not", - "description": "image_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_in", - "description": "image_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "image_not_in", - "description": "image_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit", - "description": "commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not", - "description": "commit_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_in", - "description": "commit_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commit_not_in", - "description": "commit_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PushImpact", - "description": "PushImpact-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of PushImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of PushImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of PushImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": "PushImpact push Push", - "args": [ - { - "name": "id", - "description": "id of Push", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchs", - "description": "branchs is list variant of branch of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PushImpactOrdering", - "description": "Ordering Enum for PushImpact", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PushImpactFilter", - "description": "Filter Input Type for PushImpact", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PushImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PushImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push", - "description": "push", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_not", - "description": "push_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_in", - "description": "push_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "push_not_in", - "description": "push_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PullRequestImpact", - "description": "PullRequestImpact-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of PullRequestImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of PullRequestImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of PullRequestImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "PullRequestImpact pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PullRequestImpactOrdering", - "description": "Ordering Enum for PullRequestImpact", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PullRequestImpactFilter", - "description": "Filter Input Type for PullRequestImpact", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestImpactFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "url_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "url_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "url_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "url_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "url_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "url_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "url_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "url_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "url_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "url_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "url_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "url_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "url_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not", - "description": "data_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_in", - "description": "data_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_not_in", - "description": "data_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "data_lt", - "description": "data_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_lte", - "description": "data_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gt", - "description": "data_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_gte", - "description": "data_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_contains", - "description": "data_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_contains", - "description": "data_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_starts_with", - "description": "data_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_starts_with", - "description": "data_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_ends_with", - "description": "data_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_not_ends_with", - "description": "data_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "pullRequest", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not", - "description": "pullRequest_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_in", - "description": "pullRequest_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest_not_in", - "description": "pullRequest_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "UserJoinedChannel", - "description": "UserJoinedChannel-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of UserJoinedChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "UserJoinedChannel user ChatId", - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channel", - "description": "UserJoinedChannel channel ChatChannel", - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "description": "Ordering Enum for UserJoinedChannel", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_UserJoinedChannelFilter", - "description": "Filter Input Type for UserJoinedChannel", - "fields": null, - "inputFields": [ - { - "name": "AND", - "description": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_UserJoinedChannelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_UserJoinedChannelFilter", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId", - "description": "atmTeamId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not", - "description": "atmTeamId_not", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_in", - "description": "atmTeamId_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_in", - "description": "atmTeamId_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lt", - "description": "atmTeamId_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_lte", - "description": "atmTeamId_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gt", - "description": "atmTeamId_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_gte", - "description": "atmTeamId_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_contains", - "description": "atmTeamId_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_contains", - "description": "atmTeamId_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_starts_with", - "description": "atmTeamId_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_starts_with", - "description": "atmTeamId_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_ends_with", - "description": "atmTeamId_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "atmTeamId_not_ends_with", - "description": "atmTeamId_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "id_not", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "id_lt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "id_lte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "id_gt", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "id_gte", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "id_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "id_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "id_not_starts_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "id_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "id_not_ends_with", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "user", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not", - "description": "user_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_in", - "description": "user_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_in", - "description": "user_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel", - "description": "channel", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_not", - "description": "channel_not", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_in", - "description": "channel_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channel_not_in", - "description": "channel_not_in", - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MutationType", - "description": null, - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null, - "fields": [ - { - "name": "setChatUserPreference", - "description": "Set the value of a user preference.", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "UserPreference" - } - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "chatUserId", - "description": "The id of user", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "setPersonPreference", - "description": "Set the value of a person preference. Returns what was set", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "PersonPreference" - } - }, - "args": [ - { - "name": "personId", - "description": "The ID of the person", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "setChatTeamPreference", - "description": "Set the value of a chat team preference. Returns what was set", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "TeamPreference" - } - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "createSlackChannel", - "description": "Create a slack channel in the current team", - "type": { - "kind": "OBJECT", - "name": "SlackChannel" - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "description": "The name of the channel to create", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "addBotToSlackChannel", - "description": "Ask the bot to join a chat channel", - "type": { - "kind": "OBJECT", - "name": "SlackChannel" - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "linkSlackChannelToRepo", - "description": "Link a channel to a repo", - "type": { - "kind": "OBJECT", - "name": "SlackChannel" - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channelId", - "description": "The id of the channel to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "repo", - "description": "The name of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "owner", - "description": "The owner of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The provider id of the repo to link", - "defaultValue": "zjlmxjzwhurspem", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "inviteUserToSlackChannel", - "description": "Ask the bot to invite a user to join a chat channel", - "type": { - "kind": "OBJECT", - "name": "SlackChannel" - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "userId", - "description": "The id of the user to invite", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "unlinkSlackChannelFromRepo", - "description": "Unlink a channel from a repo", - "type": { - "kind": "OBJECT", - "name": "SlackChannel" - }, - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "channelId", - "description": "The id of the channel to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "repo", - "description": "The name of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "owner", - "description": "The owner of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The provider id of the repo to link", - "defaultValue": "zjlmxjzwhurspem", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "setOwnerLogin", - "description": "set a GitHub login to be used for resources owned by an Org", - "type": { - "kind": "OBJECT", - "name": "OwnerLogin" - }, - "args": [ - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "setRepoLogin", - "description": "set a GitHub login to be used for this Repository", - "type": { - "kind": "OBJECT", - "name": "RepoLogin" - }, - "args": [ - { - "name": "repo", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "name": "setTeamProperties", - "description": "Set a team's properties", - "type": { - "kind": "OBJECT", - "name": "Team" - }, - "args": [ - { - "name": "name", - "description": "The display name of the team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "description", - "description": "The description of the team", - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "iconUrl", - "description": "URL to a teams icon", - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - } - ] - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Introspection defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "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 - }, - { - "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 - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": null, - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given __Type is", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": null, - "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": 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": null, - "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": null, - "fields": [ - { - "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": "locations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "onOperation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - }, - { - "name": "onFragment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - }, - { - "name": "onField", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "An enum describing valid locations where a directive can be placed", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Indicates the directive is valid on queries.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Indicates the directive is valid on mutations.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Indicates the directive is valid on fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Indicates the directive is valid on fragment definitions.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Indicates the directive is valid on fragment spreads.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Indicates the directive is valid on inline fragments.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Indicates the directive is valid on a schema IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Indicates the directive is valid on a scalar IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates the directive is valid on an object IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Indicates the directive is valid on a field IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Indicates the directive is valid on a field argument IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates the directive is valid on an interface IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates the directive is valid on an union IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates the directive is valid on an enum IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates the directive is valid on an input object IDL definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Indicates the directive is valid on an input object field IDL definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubscriptionType", - "description": null, - "fields": [ - { - "name": "Issue", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Issue", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of Issue", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Issue", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "action of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of Issue", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "actions is list variant of action of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of Issue", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Comment", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Comment", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentId", - "description": "commentId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "path", - "description": "path of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "position", - "description": "position of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commentType", - "description": "commentType of Comment", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "commentIds is list variant of commentId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "paths", - "description": "paths is list variant of path of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "positions", - "description": "positions is list variant of position of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentTypes", - "description": "commentTypes is list variant of commentType of Comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommentFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Label", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Label", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", - "description": "default of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", - "description": "color of Label", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", - "description": "defaults is list variant of default of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", - "description": "colors is list variant of color of Label", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Repo", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Repo", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "repoId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "defaultBranch of Repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerges", - "description": "allowRebaseMerges is list variant of allowRebaseMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowSquashMerges", - "description": "allowSquashMerges is list variant of allowSquashMerge of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "allowMergeCommits", - "description": "allowMergeCommits is list variant of allowMergeCommit of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoIds", - "description": "repoIds is list variant of repoId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaultBranchs", - "description": "defaultBranchs is list variant of defaultBranch of Repo", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Commit", - "description": null, - "args": [ - { - "name": "sha", - "description": "sha of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "message of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messages", - "description": "messages is list variant of message of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Push", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Push", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "branch of Push", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchs", - "description": "branchs is list variant of branch of Push", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Build", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Build", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "buildId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "status of Build", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "buildUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", - "description": "compareUrl of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trigger", - "description": "trigger of Build", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "pullRequestNumber of Build", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "startedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "finishedAt of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "jobName of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "jobId of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Build", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildIds", - "description": "buildIds is list variant of buildId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statuss", - "description": "statuss is list variant of status of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "buildUrls is list variant of buildUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "compareUrls is list variant of compareUrl of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "triggers", - "description": "triggers is list variant of trigger of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "pullRequestNumbers", - "description": "pullRequestNumbers is list variant of pullRequestNumber of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "startedAts", - "description": "startedAts is list variant of startedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "finishedAts", - "description": "finishedAts is list variant of finishedAt of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobNames", - "description": "jobNames is list variant of jobName of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobIds", - "description": "jobIds is list variant of jobId of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Build", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BuildFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Workflow", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Workflow", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "workflowId of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "config", - "description": "config of Workflow", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "workflowIds is list variant of workflowId of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "configs", - "description": "configs is list variant of config of Workflow", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WorkflowOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WorkflowFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Workflow", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Branch", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Branch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isRemotes", - "description": "isRemotes is list variant of isRemote of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrls", - "description": "remoteRepoHtmlUrls is list variant of remoteRepoHtmlUrl of Branch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DeletedBranch", - "description": null, - "args": [ - { - "name": "id", - "description": "id of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DeletedBranch", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DeletedBranch", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DeletedBranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeletedBranch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatId", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatId", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "screenName of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "userId of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "isOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "isAdmin of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "isBot of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", - "description": "screenNames is list variant of screenName of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userIds", - "description": "userIds is list variant of userId of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAtomistBots", - "description": "isAtomistBots is list variant of isAtomistBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isOwners", - "description": "isOwners is list variant of isOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwners", - "description": "isPrimaryOwners is list variant of isPrimaryOwner of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isAdmins", - "description": "isAdmins is list variant of isAdmin of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isBots", - "description": "isBots is list variant of isBot of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timezoneLabels", - "description": "timezoneLabels is list variant of timezoneLabel of ChatId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatChannel", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "normalizedNames", - "description": "normalizedNames is list variant of normalizedName of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelIds", - "description": "channelIds is list variant of channelId of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaults", - "description": "isDefaults is list variant of isDefault of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "botInvitedSelfs", - "description": "botInvitedSelfs is list variant of botInvitedSelf of ChatChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PullRequest", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PullRequest", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "number of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "prId of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "title of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "numbers is list variant of number of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "prIds", - "description": "prIds is list variant of prId of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergeds", - "description": "mergeds is list variant of merged of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseBranchNames", - "description": "baseBranchNames is list variant of baseBranchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branchNames", - "description": "branchNames is list variant of branchName of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "titles", - "description": "titles is list variant of title of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "updatedAts is list variant of updatedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "closedAts", - "description": "closedAts is list variant of closedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "mergedAts", - "description": "mergedAts is list variant of mergedAt of PullRequest", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Org", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Org", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "owner of Org", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", - "description": "owners is list variant of owner of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerTypes", - "description": "ownerTypes is list variant of ownerType of Org", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCMId", - "description": null, - "args": [ - { - "name": "login", - "description": "login of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of SCMId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of SCMId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubId", - "description": null, - "args": [ - { - "name": "login", - "description": "login of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of GitHubId", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logins", - "description": "logins is list variant of login of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of GitHubId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubIdFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Tag", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Tag", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ref", - "description": "ref of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Tag", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", - "description": "refs is list variant of ref of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Tag", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TagOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TagFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "K8Pod", - "description": null, - "args": [ - { - "name": "name", - "description": "name of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "phases", - "description": "phases is list variant of phase of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "baseNames", - "description": "baseNames is list variant of baseName of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "namespaces", - "description": "namespaces is list variant of namespace of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "specsJSONs", - "description": "specsJSONs is list variant of specsJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "envJSONs", - "description": "envJSONs is list variant of envJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "metadataJSONs", - "description": "metadataJSONs is list variant of metadataJSON of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containersCrashLoopBackOffs", - "description": "containersCrashLoopBackOffs is list variant of containersCrashLoopBackOff of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Pod", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8PodOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "K8Container", - "description": null, - "args": [ - { - "name": "name", - "description": "name of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "environment of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stateReason", - "description": "stateReason of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ready", - "description": "ready of K8Container", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "restartCount of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", - "description": "containerID of K8Container", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "environments", - "description": "environments is list variant of environment of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerJSONs", - "description": "containerJSONs is list variant of containerJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "stateReasons", - "description": "stateReasons is list variant of stateReason of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "readys", - "description": "readys is list variant of ready of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "restartCounts", - "description": "restartCounts is list variant of restartCount of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", - "description": "statusJSONs is list variant of statusJSON of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceVersions", - "description": "resourceVersions is list variant of resourceVersion of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerIDs", - "description": "containerIDs is list variant of containerID of K8Container", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DockerImage", - "description": null, - "args": [ - { - "name": "image", - "description": "image of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "imageName of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of DockerImage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "images", - "description": "images is list variant of image of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "description": "imageNames is list variant of imageName of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of DockerImage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_DockerImageFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ImageLinked", - "description": null, - "args": [ - { - "name": "timestamp", - "description": "timestamp of ImageLinked", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of ImageLinked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ImageLinkedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ImageLinked", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Release", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Release", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Release", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReleaseOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReleaseFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Release", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HerokuApp", - "description": null, - "args": [ - { - "name": "app", - "description": "app of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "user of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "appId of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release", - "description": "release of HerokuApp", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apps", - "description": "apps is list variant of app of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "users", - "description": "users is list variant of user of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "appIds", - "description": "appIds is list variant of appId of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "releases", - "description": "releases is list variant of release of HerokuApp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_HerokuAppOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_HerokuAppFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HerokuApp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Application", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Application", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "host of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Application", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "hosts", - "description": "hosts is list variant of host of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Application", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ApplicationFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Team", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "iconUrl of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "createdAt of Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "iconUrls", - "description": "iconUrls is list variant of iconUrl of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "createdAts is list variant of createdAt of Team", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatTeam", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", - "description": "providers is list variant of provider of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "domains", - "description": "domains is list variant of domain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "messageCounts", - "description": "messageCounts is list variant of messageCount of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "emailDomains", - "description": "emailDomains is list variant of emailDomain of ChatTeam", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChatTeamFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Person", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Person", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "forename of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "surname of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "name of Person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "forenames", - "description": "forenames is list variant of forename of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "surnames", - "description": "surnames is list variant of surname of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Person", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PersonFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Status", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Status", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "description of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetUrl", - "description": "targetUrl of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "context", - "description": "context of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "timestamp of Status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "descriptions is list variant of description of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "targetUrls", - "description": "targetUrls is list variant of targetUrl of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "contexts", - "description": "contexts is list variant of context of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "timestamps is list variant of timestamp of Status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_StatusFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Email", - "description": null, - "args": [ - { - "name": "address", - "description": "address of Email", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", - "description": "addresss is list variant of address of Email", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_EmailFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Fingerprint", - "description": null, - "args": [ - { - "name": "name", - "description": "name of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "sha of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of Fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "names is list variant of name of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "shas", - "description": "shas is list variant of sha of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of Fingerprint", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_FingerprintFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Fingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ParentImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of ParentImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of ParentImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ParentImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ParentImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ParentImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PushImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PushImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of PushImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of PushImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of PushImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PushImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PullRequestImpact", - "description": null, - "args": [ - { - "name": "id", - "description": "id of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "data of PullRequestImpact", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "datas is list variant of data of PullRequestImpact", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestImpactOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestImpactFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequestImpact", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubProvider", - "description": null, - "args": [ - { - "name": "id", - "description": "id of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of GitHubProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCMProvider", - "description": null, - "args": [ - { - "name": "id", - "description": "id of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "apiUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "providerIds is list variant of providerId of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", - "description": "apiUrls is list variant of apiUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrls", - "description": "gitUrls is list variant of gitUrl of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerTypes", - "description": "providerTypes is list variant of providerType of SCMProvider", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_SCMProviderFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UserJoinedChannel", - "description": null, - "args": [ - { - "name": "id", - "description": "id of UserJoinedChannel", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of UserJoinedChannel", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_UserJoinedChannelFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserJoinedChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubOrgWebhook", - "description": null, - "args": [ - { - "name": "id", - "description": "id of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of GitHubOrgWebhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of GitHubOrgWebhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of GitHubOrgWebhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubOrgWebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_GitHubOrgWebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubOrgWebhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Webhook", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Webhook", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "url of Webhook", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "webhookType", - "description": "webhookType of Webhook", - "type": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "urls is list variant of url of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhookTypes", - "description": "webhookTypes is list variant of webhookType of Webhook", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_WebhookOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WebhookFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChannelLink", - "description": null, - "args": [ - { - "name": "id", - "description": "id of ChannelLink", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of ChannelLink", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ChannelLinkFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Review", - "description": null, - "args": [ - { - "name": "id", - "description": "id of Review", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "gitHubId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "reviewId of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "body of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "state of Review", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "submittedAt of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "htmlUrl of Review", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "ids is list variant of id of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", - "description": "gitHubIds is list variant of gitHubId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reviewIds", - "description": "reviewIds is list variant of reviewId of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "bodys", - "description": "bodys is list variant of body of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "states", - "description": "states is list variant of state of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "submittedAts", - "description": "submittedAts is list variant of submittedAt of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "htmlUrls", - "description": "htmlUrls is list variant of htmlUrl of Review", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_ReviewFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ids", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Card", - "description": "Auto-generated subscription for Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Card" - } - }, - "args": [ - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "shortTitle", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "UserNotification", - "description": "Auto-generated subscription for UserNotification", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserNotification" - } - }, - "args": [ - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "login", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "contentType", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "body", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "Notification", - "description": "Auto-generated subscription for Notification", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Notification" - } - }, - "args": [ - { - "name": "ts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "key", - "description": "Key of the Card", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ttl", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "post", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "contentType", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "body", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmGoal", - "description": "Auto-generated subscription for SdmGoal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoal" - } - }, - "args": [ - { - "name": "approvelRequired", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "environment", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "error", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "externalUrl", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "goalSet", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "goalSetId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "retryFeasible", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean" - } - } - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "uniqueName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "url", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmBuildIdentifier", - "description": "Auto-generated subscription for SdmBuildIdentifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmBuildIdentifier" - } - }, - "args": [ - { - "name": "identifier", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmDeployEnablement", - "description": "Auto-generated subscription for SdmDeployEnablement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement" - } - }, - "args": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SdmVersion", - "description": "Auto-generated subscription for SdmVersion", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmVersion" - } - }, - "args": [ - { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "version", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "AtomistLog", - "description": "Auto-generated subscription for AtomistLog", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistLog" - } - }, - "args": [ - { - "name": "timestamp", - "description": "Status timestamp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int" - } - } - }, - { - "name": "team_id", - "description": "Team ID for which log message is produced", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "level", - "description": "Log message level: debug, info, warn, error, fatal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "message", - "description": "Log message", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "SentryAlert", - "description": "Auto-generated subscription for SentryAlert", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SentryAlert" - } - }, - "args": [ - { - "name": "culprit", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "level", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "message", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "project", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "project_name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - }, - { - "name": "url", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String" - } - } - } - ] - }, - { - "name": "RepoOnboarded", - "description": "", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "RepoOnboarded" - } - }, - "args": [] - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardSdmGoal", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "link", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "environment", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardSdm", - "fields": [ - { - "name": "goalSet", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "goalSetId", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "duration", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - }, - { - "name": "goals", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardSdmGoal" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardRepository", - "fields": [ - { - "name": "owner", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "slug", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardCollaborator", - "fields": [ - { - "name": "avatar", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "login", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "link", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardProvenance", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "Card", - "fields": [ - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "ttl", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "post", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "description": "Key of the Card", - "directives": [ - { - "name": "compositeId" - } - ], - "args": [] - }, - { - "name": "repository", - "args": [ - { - "name": "slug", - "type": { - "kind": "LIST", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "defaultValue": null - }, - { - "name": "name", - "type": { - "kind": "LIST", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "defaultValue": null - }, - { - "name": "owner", - "type": { - "kind": "LIST", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CardRepository" - }, - "description": "Repository this card was created for" - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "shortTitle", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "title", - "type": { - "kind": "OBJECT", - "name": "CardTitle" - }, - "args": [] - }, - { - "name": "body", - "type": { - "kind": "OBJECT", - "name": "CardBody" - }, - "args": [] - }, - { - "name": "sdm", - "type": { - "kind": "OBJECT", - "name": "CardSdm" - }, - "args": [] - }, - { - "name": "correlations", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardCorrelation" - } - }, - "args": [] - }, - { - "name": "collaborators", - "args": [ - { - "name": "login", - "type": { - "kind": "LIST", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardCollaborator" - } - }, - "description": "Collaborator on this card" - }, - { - "name": "events", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardEvent" - } - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - }, - { - "name": "actionGroups", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup" - } - }, - "args": [] - }, - { - "name": "comments", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardBody" - } - }, - "args": [] - }, - { - "name": "reactions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardReaction" - } - }, - "args": [] - }, - { - "name": "provenance", - "args": [ - { - "name": "name", - "type": { - "kind": "LIST", - "ofType": { - "kind": "SCALAR", - "name": "String" - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardProvenance" - } - }, - "description": "Provenance information about what automation created or modified this card" - }, - { - "name": "id", - "description": "The ID of this Card", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardTitle", - "fields": [ - { - "name": "icon", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardBody", - "fields": [ - { - "name": "avatar", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "login", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "hint", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardReaction", - "fields": [ - { - "name": "avatar", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "login", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "reaction", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardCorrelation", - "fields": [ - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "icon", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "title", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "shortTitle", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "link", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "body", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CorrelationBody" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CorrelationBody", - "fields": [ - { - "name": "icon", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardEvent", - "fields": [ - { - "name": "icon", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - }, - { - "name": "actionGroups", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardAction", - "fields": [ - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "registration", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "command", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "role", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "parameters", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameter" - } - }, - "args": [] - }, - { - "name": "parameterName", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "parameterOptions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption" - } - }, - "args": [] - }, - { - "name": "parameterOptionGroups", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardActionGroup", - "fields": [ - { - "name": "text", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardActionParameter", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "value", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", - "fields": [ - { - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "options", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption" - } - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "UserNotification", - "fields": [ - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "description": "Key of the Card", - "directives": [ - { - "name": "compositeId" - } - ], - "args": [] - }, - { - "name": "ttl", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "post", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "login", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "contentType", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "body", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - }, - { - "name": "id", - "description": "The ID of this UserNotification", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "Notification", - "fields": [ - { - "name": "ts", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "key", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "description": "Key of the Card", - "directives": [ - { - "name": "compositeId" - } - ], - "args": [] - }, - { - "name": "ttl", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "post", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "contentType", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "body", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "actions", - "type": { - "kind": "LIST", - "ofType": { - "kind": "OBJECT", - "name": "CardAction" - } - }, - "args": [] - }, - { - "name": "id", - "description": "The ID of this Notification", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmCondition", - "fields": [ - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmRepository", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "providerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmGoal", - "fields": [ - { - "name": "approval", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "approvelRequired", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "externalKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "externalUrl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "fulfillment", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "method", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmGoalFulfillment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "goalSet", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "goalSetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "preConditions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmCondition", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "provenance", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "linkTo", - "args": [ - { - "name": "queryName", - "value": "pushBySha" - }, - { - "name": "variables", - "value": [ - { - "name": "afterSha", - "path": "$.sha" - }, - { - "name": "branchName", - "path": "$.branch" - } - ] - } - ] - }, - { - "name": "linkFrom", - "args": [ - { - "name": "field", - "value": { - "kind": "LIST", - "name": "goals" - } - }, - { - "name": "query", - "value": "query goals($sha: String!, $branch: String!) {SdmGoal(sha: [$sha], branch: [$branch], _first: 500){id}}" - }, - { - "name": "variables", - "value": [ - { - "name": "sha", - "path": "$.after.sha" - }, - { - "name": "branch", - "path": "$.branch" - } - ] - } - ] - } - ] - }, - { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "retryFeasible", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "uniqueName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "id", - "description": "The ID of this SdmGoal", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [ - { - "name": "rootType", - "args": [] - } - ] - }, - { - "description": null, - "interfaces": [], - "name": "SdmGoalState", - "fields": null, - "possibleTypes": null, - "kind": "ENUM", - "enumValues": [ - { - "name": "success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requested", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "waiting_for_approval", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failure", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "planned", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "in_process", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skipped", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmProvenance", - "fields": [ - { - "name": "channelId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "correlationId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "userId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmGoalFulfillment", - "fields": [ - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmBuildIdentifierRepository", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmBuildIdentifier", - "fields": [ - { - "name": "identifier", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "id", - "description": "The ID of this SdmBuildIdentifier", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [ - { - "name": "rootType", - "args": [] - } - ] - }, - { - "description": null, - "interfaces": [], - "name": "SdmDeployEnablement", - "fields": [ - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "providerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmDeployState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "id", - "description": "The ID of this SdmDeployEnablement", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [ - { - "name": "rootType", - "args": [] - } - ] - }, - { - "description": null, - "interfaces": [], - "name": "SdmDeployState", - "fields": null, - "possibleTypes": null, - "kind": "ENUM", - "enumValues": [ - { - "name": "requested", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SdmVersion", - "fields": [ - { - "name": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "compositeId", - "args": [] - } - ] - }, - { - "name": "id", - "description": "The ID of this SdmVersion", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [ - { - "name": "rootType", - "args": [] - } - ] - }, - { - "description": null, - "interfaces": [], - "name": "SdmVersionRepository", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "kind": "OBJECT", - "name": "AtomistLog", - "description": "Atomist log messages", - "fields": [ - { - "name": "timestamp", - "description": "Status timestamp", - "type": { - "kind": "SCALAR", - "name": "Int" - }, - "args": [] - }, - { - "name": "team_id", - "description": "Team ID for which log message is produced", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "level", - "description": "Log message level: debug, info, warn, error, fatal", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "message", - "description": "Log message", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "directives": [ - { - "name": "searchable" - } - ], - "args": [] - }, - { - "name": "correlation_context", - "description": "Atomist log correlation context", - "args": [ - { - "name": "correlation_id", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ], - "type": { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext" - } - }, - { - "name": "id", - "description": "The ID of this AtomistLog", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", - "description": "Atomist log correlation context", - "fields": [ - { - "name": "correlation_id", - "description": "Correlation ID", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "automation", - "description": "Automation for which log message is produced", - "type": { - "kind": "OBJECT", - "name": "AtomistLogAutomation" - }, - "args": [ - { - "name": "name", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "version", - "defaultValue": null, - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - } - ], - "interfaces": [] - }, - { - "kind": "OBJECT", - "name": "AtomistLogAutomation", - "description": "Automation for which log message is produced", - "fields": [ - { - "name": "name", - "description": "Automation name", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - }, - { - "name": "version", - "description": "Automation description", - "type": { - "kind": "SCALAR", - "name": "String" - }, - "args": [] - } - ], - "interfaces": [] - }, - { - "description": null, - "interfaces": [], - "name": "SentryEvent", - "fields": [ - { - "name": "event_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "extra", - "description": null, - "args": [ - { - "name": "git_sha", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SentryEventExtra", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "description": null, - "interfaces": [], - "name": "SentryAlert", - "fields": [ - { - "name": "commit", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "linkTo", - "args": [ - { - "name": "queryName", - "value": "commitBySha" - }, - { - "name": "variables", - "value": [ - { - "name": "sha", - "path": "$.event.extra.git_sha" - } - ] - } - ] - }, - { - "name": "linkFrom", - "args": [ - { - "name": "field", - "value": { - "kind": "LIST", - "name": "sentryAlerts" - } - }, - { - "name": "query", - "value": "query sentryAlert($sha: String!) { SentryAlert {id event {extra(git_sha: $sha) {git_sha} } } }" - }, - { - "name": "variables", - "value": [ - { - "name": "sha", - "path": "$.sha" - } - ] - } - ] - } - ] - }, - { - "name": "culprit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "event", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SentryEvent", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "level", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [ - { - "name": "searchable", - "args": [] - } - ] - }, - { - "name": "project", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "project_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "id", - "description": "The ID of this SentryAlert", - "type": { - "kind": "SCALAR", - "name": "ID" - }, - "args": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [ - { - "name": "rootType", - "args": [] - } - ] - }, - { - "description": null, - "interfaces": [], - "name": "SentryEventExtra", - "fields": [ - { - "name": "artifact", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "correlation_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "git_owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "git_repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "git_sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "invocation_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "operation_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "operation_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "team_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "team_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null, - "directives": [] - } - ], - "possibleTypes": null, - "kind": "OBJECT", - "enumValues": null, - "inputFields": null, - "directives": [] - }, - { - "kind": "ENUM", - "name": "_Ordering", - "fields": null, - "inputFields": null, - "interfaces": null, - "description": "asc or desc ordering. Must be used with orderBy", - "enumValues": [ - { - "name": "desc", - "description": "Descending order", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "asc", - "description": "Ascending order", - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "kind": "OBJECT", - "name": "UserPreference", - "description": "A user's preferences as key/value pairs", - "interfaces": [], - "fields": [ - { - "name": "name", - "description": "The name of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "PersonPreference", - "description": "A person's preferences as key/value pairs", - "interfaces": [], - "fields": [ - { - "name": "name", - "description": "The name of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "TeamPreference", - "description": "A team's preferences as key/value pairs", - "interfaces": [], - "fields": [ - { - "name": "name", - "description": "The name of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "value", - "description": "The value of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "SlackChannel", - "description": "A slack channel", - "interfaces": [], - "fields": [ - { - "name": "chatTeamId", - "description": "The id of the chat team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "name", - "description": "The name of the channel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "id", - "description": "The id of the channel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "OwnerLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "interfaces": [], - "fields": [ - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "login", - "description": "The login that should be used", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "RepoLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "interfaces": [], - "fields": [ - { - "name": "repo", - "description": "The repository name", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - }, - { - "name": "login", - "description": "The login that should be used", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String" - } - } - ] - }, - { - "kind": "OBJECT", - "name": "RepoOnboarded", - "description": "The data for an existing Repo has been loaded and is ready for querying", - "interfaces": [], - "args": [], - "fields": [ - { - "name": "repo", - "description": "GitHub Repository", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - } - } - ] - } - ], - "directives": [ - { - "name": "model", - "description": "entity is a model type", - "locations": [ - "FIELD" - ], - "args": [] - }, - { - "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": "required", - "description": "Requires this field to be present and not null or empty", - "locations": [ - "FIELD" - ], - "args": [] - }, - { - "name": "ne", - "description": "Ensures a field's value does not equal 'value'", - "locations": [ - "FIELD" - ], - "args": [ - { - "name": "value", - "description": "Value to match with fields value (after .toString)", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "matches", - "description": "Ensures a field's value matches the supplied regular expression", - "locations": [ - "FIELD" - ], - "args": [ - { - "name": "re", - "description": "Re to match with fields value (after .toString)", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ] - } - ] - } - }, - "extensions": { - "correlation_id": "f5a79ff8-c5c7-4a0c-bbf3-f599f02579d7" - } -} \ No newline at end of file diff --git a/test/api-helper/code/review/goalReviewListener.test.ts b/test/api-helper/code/review/goalReviewListener.test.ts new file mode 100644 index 000000000..ccdae46a9 --- /dev/null +++ b/test/api-helper/code/review/goalReviewListener.test.ts @@ -0,0 +1,206 @@ +/* + * Copyright © 2018 Atomist, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { Severity } from "@atomist/automation-client"; +import * as assert from "power-assert"; +import { + ApproveGoalIfErrorComments, + ApproveGoalIfWarnComments, + FailGoalIfErrorComments, + FailGoalIfWarnComments, + severityReviewListener, +} from "../../../../lib/api-helper/code/review/goalReviewListener"; +import { ReviewListenerInvocation } from "../../../../lib/api/listener/ReviewListener"; +import { PushImpactResponse } from "../../../../lib/api/registration/PushImpactListenerRegistration"; + +describe("goalReviewListener", () => { + + describe("severityReviewListener", () => { + + it("should return the appropriate push impact response", async () => { + const pirs: PushImpactResponse[] = [PushImpactResponse.failGoals, PushImpactResponse.requireApprovalToProceed]; + const severities: Severity[] = ["info", "warn", "error"]; + for (const pir of pirs) { + for (const severity of severities) { + const rli: ReviewListenerInvocation = { review: { comments: [{ severity }] } } as any; + const r = await severityReviewListener(pir, severity)(rli); + assert(r === pir); + for (const otherSeverity of severities) { + if (otherSeverity !== severity) { + const orli: ReviewListenerInvocation = { review: { comments: [{ otherSeverity }] } } as any; + const or = await severityReviewListener(pir, severity)(orli); + assert(or === PushImpactResponse.proceed); + } + } + } + } + }); + + it("should proceed if there are no comments", async () => { + const rli: ReviewListenerInvocation = { + review: { comments: [] }, + } as any; + const r = await severityReviewListener(PushImpactResponse.failGoals)(rli); + assert(r === PushImpactResponse.proceed); + }); + + }); + + describe("FailGoalIfErrorComments", () => { + + it("should proceed if no error comments exists", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + ], + }, + } as any; + const r = await FailGoalIfErrorComments.listener(rli); + assert(r === PushImpactResponse.proceed); + }); + + it("should find an error in several comments", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + ], + }, + } as any; + const r = await FailGoalIfErrorComments.listener(rli); + assert(r === PushImpactResponse.failGoals); + }); + + }); + + describe("ApproveGoalIfErrorComments", () => { + + it("should proceed if no error comments exists", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + ], + }, + } as any; + const r = await ApproveGoalIfErrorComments.listener(rli); + assert(r === PushImpactResponse.proceed); + }); + + it("should find an error in several comments", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + ], + }, + } as any; + const r = await ApproveGoalIfErrorComments.listener(rli); + assert(r === PushImpactResponse.requireApprovalToProceed); + }); + + }); + + describe("FailGoalIfWarnComments", () => { + + it("should proceed if no warn comments exists", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "error" }, + { severity: "info" }, + { severity: "info" }, + ], + }, + } as any; + const r = await FailGoalIfWarnComments.listener(rli); + assert(r === PushImpactResponse.proceed); + }); + + it("should find an warn in several comments", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + ], + }, + } as any; + const r = await FailGoalIfWarnComments.listener(rli); + assert(r === PushImpactResponse.failGoals); + }); + + }); + + describe("ApproveGoalIfWarnComments", () => { + + it("should proceed if no warn comments exists", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "error" }, + { severity: "info" }, + { severity: "info" }, + ], + }, + } as any; + const r = await ApproveGoalIfWarnComments.listener(rli); + assert(r === PushImpactResponse.proceed); + }); + + it("should find an warn in several comments", async () => { + const rli: ReviewListenerInvocation = { + review: { + comments: [ + { severity: "warn" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + { severity: "info" }, + { severity: "warn" }, + { severity: "error" }, + ], + }, + } as any; + const r = await ApproveGoalIfWarnComments.listener(rli); + assert(r === PushImpactResponse.requireApprovalToProceed); + }); + + }); + +});