diff --git a/lib/api/mapping/outputTest.ts b/lib/api/mapping/outputTest.ts deleted file mode 100644 index 699391bb6..000000000 --- a/lib/api/mapping/outputTest.ts +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright © 2020 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 { AutomationContextAware } from "@atomist/automation-client/lib/HandlerContext"; -import { isEventIncoming } from "@atomist/automation-client/lib/internal/transport/RequestProcessor"; -import * as _ from "lodash"; -import { SkillOutput } from "../../typings/types"; -import { StatefulPushListenerInvocation } from "../dsl/goalContribution"; -import { matchStringOrRegexp } from "./goalTest"; -import { PushTest } from "./PushTest"; -import { AnyPush } from "./support/commonPushTests"; - -/** - * Extension to PushTest to pre-condition on SkillOutput events, so called output tests - */ -export interface OutputTest extends PushTest { - pushTest: PushTest; -} - -export function isOutput(options: { - type?: string, - classifier?: string | RegExp, - pushTest?: PushTest, -} = {}): OutputTest { - return outputTest( - `is output ${JSON.stringify(options)}`, - async g => { - if (!!options.type && !matchStringOrRegexp(options.type, g.type)) { - return false; - } - if (!!options.classifier && !matchStringOrRegexp(options.classifier, g.classifier)) { - return false; - } - return true; - }, - options.pushTest, - ); -} - -export function outputTest(name: string, - outputMapping: (goal: SkillOutput, pli: StatefulPushListenerInvocation) => Promise, - pushTest: PushTest = AnyPush): OutputTest { - return { - name, - mapping: async pli => { - const trigger = (pli?.context as any as AutomationContextAware)?.trigger; - if (!!trigger && isEventIncoming(trigger)) { - const output = _.get(trigger, "data.SkillOutput[0]") as SkillOutput; - if (!!output) { - const match = await outputMapping(output, pli); - if (!!match) { - if (!pli.project) { - return true; - } else { - return pushTest.mapping(pli); - } - } - } - } - return false; - }, - pushTest, - }; -} diff --git a/lib/core/goal/skillOutput.ts b/lib/core/goal/skillOutput.ts deleted file mode 100644 index caf109dff..000000000 --- a/lib/core/goal/skillOutput.ts +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright © 2020 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 { goalData } from "../../api-helper/goal/sdmGoal"; -import { GoalExecutionListener } from "../../api/listener/GoalStatusListener"; -import { - CustomSkillOutputInput, - IngestSkillOutputMutation, - IngestSkillOutputMutationVariables, - SdmGoalState, -} from "../../typings/types"; -import { - CacheEntry, - CacheOutputGoalDataKey, -} from "./cache/goalCaching"; - -/** - * GoalExecutionListener implementation that raises SkillOutput entities for persistent goal caches - * that carry a type property - */ -export const SkillOutputGoalExecutionListener: GoalExecutionListener = async gi => { - const { goalEvent, context, configuration, result, error } = gi; - - // Check that the goal is successful - if (!!error) { - return; - } else if (!!result && (result.code !== 0 || result.state === SdmGoalState.failure)) { - return; - } else if (goalEvent.state === SdmGoalState.failure) { - return; - } - - const data = goalData(goalEvent); - const entries: Array = data[CacheOutputGoalDataKey] || []; - - for (const entry of entries.filter(e => !!e.type && !!e.classifier && !!e.uri)) { - const skillOutput: CustomSkillOutputInput = { - _branch: goalEvent.branch, - _sha: goalEvent.sha, - _owner: goalEvent.repo.owner, - _repo: goalEvent.repo.name, - orgParentId: goalEvent.push.repo.org.id, - repoParentId: goalEvent.push.repo.id, - classifier: entry.classifier.slice(`${context.workspaceId}/`.length), - type: entry.type, - uri: entry.uri, - correlationId: context.correlationId, - skill: { - name: configuration.name, - version: configuration.version, - }, - }; - await context.graphClient.mutate({ - name: "IngestSkillOutput", - variables: { - output: skillOutput, - }, - }); - } -}; diff --git a/lib/core/handlers/events/delivery/goals/SetGoalsOnSkillOutput.ts b/lib/core/handlers/events/delivery/goals/SetGoalsOnSkillOutput.ts deleted file mode 100644 index 12596c941..000000000 --- a/lib/core/handlers/events/delivery/goals/SetGoalsOnSkillOutput.ts +++ /dev/null @@ -1,150 +0,0 @@ -/* - * Copyright © 2020 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 { EventHandler } from "@atomist/automation-client/lib/decorators"; -import { subscription } from "@atomist/automation-client/lib/graph/graphQL"; -import { - EventFired, - HandleEvent, -} from "@atomist/automation-client/lib/HandleEvent"; -import { - ConfigurationAware, - HandlerContext, -} from "@atomist/automation-client/lib/HandlerContext"; -import { - HandlerResult, - Success, -} from "@atomist/automation-client/lib/HandlerResult"; -import { RemoteRepoRef } from "@atomist/automation-client/lib/operations/common/RepoId"; -import { chooseAndSetGoals } from "../../../../../api-helper/goal/chooseAndSetGoals"; -import { resolveCredentialsPromise } from "../../../../../api-helper/machine/handlerRegistrations"; -import { addressChannelsFor } from "../../../../../api/context/addressChannels"; -import { - NoPreferenceStore, - PreferenceStoreFactory, -} from "../../../../../api/context/preferenceStore"; -import { createSkillContext } from "../../../../../api/context/skillContext"; -import { EnrichGoal } from "../../../../../api/goal/enrichGoal"; -import { GoalImplementationMapper } from "../../../../../api/goal/support/GoalImplementationMapper"; -import { TagGoalSet } from "../../../../../api/goal/tagGoalSet"; -import { GoalsSetListener } from "../../../../../api/listener/GoalsSetListener"; -import { PushListenerInvocation } from "../../../../../api/listener/PushListener"; -import { GoalSetter } from "../../../../../api/mapping/GoalSetter"; -import { CredentialsResolver } from "../../../../../spi/credentials/CredentialsResolver"; -import { ProjectLoader } from "../../../../../spi/project/ProjectLoader"; -import { RepoRefResolver } from "../../../../../spi/repo-ref/RepoRefResolver"; -import { - OnAnySkillOutput, - SkillOutput, -} from "../../../../../typings/types"; -import { CacheInputGoalDataKey } from "../../../../goal/cache/goalCaching"; - -/** - * Set up goalSet on a goal (e.g. for delivery). - */ -@EventHandler("Set up goalSet on SkillOutput", subscription({ - name: "OnAnySkillOutput", - variables: { registration: undefined }, -})) -export class SetGoalsOnSkillOutput implements HandleEvent { - - /** - * Configure goal setting - * @param projectLoader use to load projects - * @param repoRefResolver used to resolve repos from GraphQL return - * @param goalSetter - * @param goalsListeners listener to goals set - * @param implementationMapping - * @param credentialsFactory credentials factory - */ - constructor(private readonly projectLoader: ProjectLoader, - private readonly repoRefResolver: RepoRefResolver, - private readonly goalSetter: GoalSetter, - // public for tests only - public readonly goalsListeners: GoalsSetListener[], - private readonly implementationMapping: GoalImplementationMapper, - private readonly credentialsFactory: CredentialsResolver, - private readonly preferenceStoreFactory: PreferenceStoreFactory, - private readonly enrichGoal: EnrichGoal, - private readonly tagGoalSet: TagGoalSet) { - } - - public async handle(event: EventFired, - context: HandlerContext): Promise { - const output = event.data.SkillOutput[0]; - - const push = output.push; - const id: RemoteRepoRef = this.repoRefResolver.toRemoteRepoRef(push.repo, {}); - const credentials = await resolveCredentialsPromise(this.credentialsFactory.eventHandlerCredentials(context, id)); - - const addressChannels = addressChannelsFor(push.repo, context); - const preferences = !!this.preferenceStoreFactory ? this.preferenceStoreFactory(context) : NoPreferenceStore; - const configuration = (context as any as ConfigurationAware).configuration; - - const pli: PushListenerInvocation = { - // Provide an undefined project to check if there is a goal test in the push rules - project: undefined, - credentials, - id, - push, - context, - addressChannels, - configuration, - preferences: preferences || NoPreferenceStore, - skill: createSkillContext(context), - }; - - const matches = await this.goalSetter.mapping(pli); - - // When there are matches it means we have some goalTests that matched the goal - if (!!matches && !!matches.goals && matches.goals.length > 0) { - await chooseAndSetGoals({ - projectLoader: this.projectLoader, - repoRefResolver: this.repoRefResolver, - goalsListeners: this.goalsListeners, - goalSetter: this.goalSetter, - implementationMapping: this.implementationMapping, - preferencesFactory: this.preferenceStoreFactory, - enrichGoal: addSkillOutputAsInputEnrichGoal(output, this.enrichGoal), - tagGoalSet: this.tagGoalSet, - }, { - context, - credentials, - push, - }); - } - return Success; - } -} - -/** - * Add a SkillOutput to the scheduled goal's input - * - * This makes outputs of previous skills into inputs of newly scheduled goals. - */ -function addSkillOutputAsInputEnrichGoal(skillOutput: SkillOutput, - delegate: EnrichGoal = async g => g): EnrichGoal { - return async (goal, pli) => { - const parameters = !!goal.parameters ? JSON.parse(goal.parameters) : {}; - - const input: Array<{ classifier: string }> = parameters[CacheInputGoalDataKey] || []; - input.push({ classifier: skillOutput.classifier }); - - parameters[CacheInputGoalDataKey] = input; - goal.parameters = JSON.stringify(parameters); - return delegate(goal, pli); - }; -} diff --git a/lib/core/machine/HandlerBasedSoftwareDeliveryMachine.ts b/lib/core/machine/HandlerBasedSoftwareDeliveryMachine.ts index 3cf666650..53ec8c4b6 100644 --- a/lib/core/machine/HandlerBasedSoftwareDeliveryMachine.ts +++ b/lib/core/machine/HandlerBasedSoftwareDeliveryMachine.ts @@ -23,13 +23,11 @@ import { AbstractSoftwareDeliveryMachine } from "../../api-helper/machine/Abstra import { FunctionalUnit } from "../../api/machine/FunctionalUnit"; import { SoftwareDeliveryMachineConfiguration } from "../../api/machine/SoftwareDeliveryMachineOptions"; import { GoalSetter } from "../../api/mapping/GoalSetter"; -import { SkillOutputGoalExecutionListener } from "../goal/skillOutput"; import { FulfillGoalOnRequested } from "../handlers/events/delivery/goals/FulfillGoalOnRequested"; import { RequestDownstreamGoalsOnGoalSuccess } from "../handlers/events/delivery/goals/RequestDownstreamGoalsOnGoalSuccess"; import { RespondOnGoalCompletion } from "../handlers/events/delivery/goals/RespondOnGoalCompletion"; import { SetGoalsOnGoal } from "../handlers/events/delivery/goals/SetGoalsOnGoal"; import { SetGoalsOnPush } from "../handlers/events/delivery/goals/SetGoalsOnPush"; -import { SetGoalsOnSkillOutput } from "../handlers/events/delivery/goals/SetGoalsOnSkillOutput"; import { SkipDownstreamGoalsOnGoalFailure } from "../handlers/events/delivery/goals/SkipDownstreamGoalsOnGoalFailure"; import { VoteOnGoalApprovalRequest } from "../handlers/events/delivery/goals/VoteOnGoalApprovalRequest"; import { ClosedIssueHandler } from "../handlers/events/issue/ClosedIssueHandler"; @@ -93,16 +91,7 @@ export class HandlerBasedSoftwareDeliveryMachine extends AbstractSoftwareDeliver this.configuration.sdm.preferenceStoreFactory, this.configuration.sdm.enrichGoal, this.configuration.sdm.tagGoalSet), - () => new SetGoalsOnSkillOutput( - this.configuration.sdm.projectLoader, - this.configuration.sdm.repoRefResolver, - this.pushMapping, - this.goalsSetListeners, - this.goalFulfillmentMapper, - this.configuration.sdm.credentialsResolver, - this.configuration.sdm.preferenceStoreFactory, - this.configuration.sdm.enrichGoal, - this.configuration.sdm.tagGoalSet)], + ], commandHandlers: [], ingesters: [], }; @@ -251,7 +240,6 @@ export class HandlerBasedSoftwareDeliveryMachine extends AbstractSoftwareDeliver configuration: Configuration & SoftwareDeliveryMachineConfiguration, goalSetters: Array) { super(name, configuration, goalSetters); - this.addGoalExecutionListener(SkillOutputGoalExecutionListener); } } diff --git a/lib/core/machine/yaml/mapPushTests.ts b/lib/core/machine/yaml/mapPushTests.ts index 12114dd06..2b97b8584 100644 --- a/lib/core/machine/yaml/mapPushTests.ts +++ b/lib/core/machine/yaml/mapPushTests.ts @@ -19,7 +19,6 @@ import { hasCommit } from "../../../api-helper/pushtest/commit"; import { isMaterialChange } from "../../../api-helper/pushtest/materialChangeTest"; import { StatefulPushListenerInvocation } from "../../../api/dsl/goalContribution"; import { isGoal } from "../../../api/mapping/goalTest"; -import { isOutput } from "../../../api/mapping/outputTest"; import { pushTest, PushTest, @@ -115,18 +114,6 @@ const IsGoal: CreatePushTest = async (test, additionalTests, extensionTests) => return undefined; }; -const IsOutput: CreatePushTest = async (test, additionalTests, extensionTests) => { - const onOutput = test.isOutput || test.onOutput; - if (!!onOutput) { - return isOutput({ - classifier: getStringOrRegexp(onOutput.classifier), - type: onOutput.type, - pushTest: onOutput.test ? await mapTest(onOutput.test, additionalTests, extensionTests) : undefined, - }); - } - return undefined; -}; - const IsMaterialChange: CreatePushTest = async test => { if (!!test.isMaterialChange) { return isMaterialChange({ @@ -223,7 +210,6 @@ export const CreatePushTests = [ IsBranch, IsDefaultBranch, IsGoal, - IsOutput, IsSkillConfigured, IsMaterialChange, HasFileContaining, diff --git a/lib/graphql/mutation/CreateKubernetesClusterProvider.graphql b/lib/graphql/mutation/CreateKubernetesClusterProvider.graphql deleted file mode 100644 index 46720f507..000000000 --- a/lib/graphql/mutation/CreateKubernetesClusterProvider.graphql +++ /dev/null @@ -1,5 +0,0 @@ -mutation CreateKubernetesClusterProvider($name: String!, $url: String) { - createKubernetesClusterProvider(name: $name, url: $url) { - id - } -} diff --git a/lib/graphql/mutation/IngestSkillOutput.graphql b/lib/graphql/mutation/IngestSkillOutput.graphql deleted file mode 100644 index a2526d14f..000000000 --- a/lib/graphql/mutation/IngestSkillOutput.graphql +++ /dev/null @@ -1,3 +0,0 @@ -mutation IngestSkillOutput($output: CustomSkillOutputInput!) { - ingestCustomSkillOutput(value: $output) -} diff --git a/lib/graphql/query/KubernetesClusterProvider.graphql b/lib/graphql/query/KubernetesClusterProvider.graphql deleted file mode 100644 index 58be2adf3..000000000 --- a/lib/graphql/query/KubernetesClusterProvider.graphql +++ /dev/null @@ -1,11 +0,0 @@ -query KubernetesClusterProvider($name: String!) { - KubernetesClusterProvider(name: $name) { - id - name - url - state { - name - error - } - } -} diff --git a/lib/graphql/schema.json b/lib/graphql/schema.json index 6b033f6e3..d0a7cb8d6 100644 --- a/lib/graphql/schema.json +++ b/lib/graphql/schema.json @@ -45,7 +45,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkill", + "name": "ConfiguredAtomistSkill", "ofType": null } } @@ -54,6 +54,108 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "activeSkill", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "getSkill", + "description": "", + "args": [ + { + "name": "maturity", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "skillExecution", "description": "", @@ -135,6 +237,16 @@ }, "defaultValue": null }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionFilter", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "", @@ -156,7 +268,7 @@ "defaultValue": null }, { - "name": "skillId", + "name": "version", "description": "", "type": { "kind": "SCALAR", @@ -166,11 +278,11 @@ "defaultValue": null }, { - "name": "version", + "name": "visibility", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillExecutionVisibility", "ofType": null }, "defaultValue": null @@ -566,6 +678,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_IssueFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -1436,6 +1558,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -3112,6 +3244,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ChatChannelFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -4363,6 +4505,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_TagFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -4411,6 +4563,16 @@ }, "defaultValue": null }, + { + "name": "clusterName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "timestamp", "description": "", @@ -4814,6 +4976,16 @@ }, "defaultValue": null }, + { + "name": "clusterName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "containerJSON", "description": "", @@ -6625,28 +6797,28 @@ "deprecationReason": null }, { - "name": "Email", + "name": "CheckSuite", "description": "", "args": [ { - "name": "address", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "addresss", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -6660,7 +6832,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_CheckSuiteOrdering", "ofType": null } }, @@ -6695,6 +6867,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CheckSuiteFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -6702,7 +6884,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "CheckSuite", "ofType": null } }, @@ -6710,7 +6892,7 @@ "deprecationReason": null }, { - "name": "PushImpact", + "name": "CheckRun", "description": "", "args": [ { @@ -6724,55 +6906,102 @@ "defaultValue": null }, { - "name": "url", + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CheckRunOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "urls", + "name": "filter", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "_CheckRunFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Email", + "description": "", + "args": [ + { + "name": "address", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "datas", + "name": "addresss", "description": "", "type": { "kind": "LIST", @@ -6793,7 +7022,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PushImpactOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -6835,7 +7064,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PushImpact", + "name": "Email", "ofType": null } }, @@ -6843,7 +7072,7 @@ "deprecationReason": null }, { - "name": "PullRequestImpact", + "name": "PushImpact", "description": "", "args": [ { @@ -6926,7 +7155,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestImpactOrdering", + "name": "_PushImpactOrdering", "ofType": null } }, @@ -6968,7 +7197,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequestImpact", + "name": "PushImpact", "ofType": null } }, @@ -6976,11 +7205,21 @@ "deprecationReason": null }, { - "name": "ResourceProvider", + "name": "PullRequestImpact", "description": "", "args": [ { - "name": "authProviderId", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -6990,15 +7229,57 @@ "defaultValue": null }, { - "name": "id", + "name": "data", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "urls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "datas", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -7007,7 +7288,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ResourceProviderOrdering", + "name": "_PullRequestImpactOrdering", "ofType": null } }, @@ -7048,8 +7329,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "OBJECT", + "name": "PullRequestImpact", "ofType": null } }, @@ -7544,94 +7825,7 @@ "deprecationReason": null }, { - "name": "DockerRegistryProvider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "kind": "ENUM", - "name": "DockerRegistryType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerRegistryProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GenericResourceProvider", + "name": "UserJoinedChannel", "description": "", "args": [ { @@ -7645,32 +7839,30 @@ "defaultValue": null }, { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "ids", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_UserJoinedChannelOrdering", + "ofType": null + } }, "defaultValue": null }, @@ -7710,7 +7902,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GenericResourceProvider", + "name": "UserJoinedChannel", "ofType": null } }, @@ -7718,7 +7910,7 @@ "deprecationReason": null }, { - "name": "BinaryRepositoryProvider", + "name": "Webhook", "description": "", "args": [ { @@ -7732,17 +7924,7 @@ "defaultValue": null }, { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "resourceProviderId", "description": "", "type": { "kind": "SCALAR", @@ -7750,46 +7932,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "kind": "ENUM", - "name": "BinaryRepositoryType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -7797,7 +7939,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BinaryRepositoryProvider", + "name": "Webhook", "ofType": null } }, @@ -7805,129 +7947,7 @@ "deprecationReason": null }, { - "name": "UserJoinedChannel", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "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": "Webhook", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "resourceProviderId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChannelLink", + "name": "ChannelLink", "description": "", "args": [ { @@ -8241,11 +8261,21 @@ "deprecationReason": null }, { - "name": "GenericResourceUser", + "name": "DockerRegistryProvider", "description": "", "args": [ { - "name": "login", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -8255,11 +8285,21 @@ "defaultValue": null }, { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "ENUM", + "name": "DockerRegistryType", "ofType": null }, "defaultValue": null @@ -8273,6 +8313,26 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -8280,7 +8340,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GenericResourceUser", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -8288,15 +8348,15 @@ "deprecationReason": null }, { - "name": "ResourceUser", + "name": "DockerHubRegistryProvider", "description": "", "args": [ { - "name": "login", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -8312,7 +8372,27 @@ "defaultValue": null }, { - "name": "_id", + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -8323,21 +8403,39 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SystemAccount", + "name": "GoogleContainerRegistryProvider", "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -8349,7 +8447,27 @@ "defaultValue": null }, { - "name": "_id", + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -8360,37 +8478,45 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SystemAccount", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "KubernetesClusterProvider", + "name": "JFrogDockerRegistryProvider", "description": "", "args": [ { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -8405,16 +8531,6 @@ }, "defaultValue": null }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "first", "description": "", @@ -8437,21 +8553,39 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Credential", + "name": "DockerRegistry", "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -8463,44 +8597,27 @@ "defaultValue": null }, { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OAuthToken", - "description": "", - "args": [ + }, { - "name": "id", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -8511,21 +8628,39 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Password", + "name": "DockerRegistryImage", "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -8537,48 +8672,41 @@ "defaultValue": null }, { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Password", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CommitFingerprintImpact", - "description": "", - "args": [ + }, { - "name": "id", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_DockerRegistryImageFilter", "ofType": null }, "defaultValue": null @@ -8591,107 +8719,46 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CommitFingerprintImpact", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SourceFingerprint", - "description": "Find a single SourceFingerprint by its sha, type and name", - "args": [ - { - "name": "name", - "description": "The name of the fingerprint to retrieve", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "The sha of the fingerprint to retrieve", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": "The type of the fingerprint to retrieve", - "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DockerRegistryImage", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commitsWithFingerprints", - "description": "Search for fingerprints, with paging", + "name": "GoogleCloudPlatformProvider", + "description": "", "args": [ { - "name": "_paging", + "name": "_id", "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "PagingInfoInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": "Restrict to this particular displayName", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "displayValue", - "description": "Restrict to this particular displayValue (type,name required)", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { "name": "name", - "description": "Restrict to this fingerprint name", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -8700,71 +8767,26 @@ "defaultValue": null }, { - "name": "repoId", - "description": "Restrict to this particular repo", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": "Restrict to this fingerprint type", + "name": "offset", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null } ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommitsWithFingerprints", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distinctHeadCommitFingerprints", - "description": "Search find all distinct fingerprints on head commits for type and name", - "args": [ - { - "name": "name", - "description": "Restrict to this fingerprint name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": "Restrict to this fingerprint type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], "type": { "kind": "NON_NULL", "name": null, @@ -8775,8 +8797,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", "ofType": null } } @@ -8786,50 +8808,29 @@ "deprecationReason": null }, { - "name": "fingerprintAggregates", + "name": "KubernetesClusterProvider", "description": "", "args": [ { - "name": "name", + "name": "_id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FingerprintAggregates", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fingerprintTargets", - "description": "", - "args": [ + }, { "name": "name", "description": "", @@ -8841,7 +8842,7 @@ "defaultValue": null }, { - "name": "type", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -8849,6 +8850,26 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -8862,7 +8883,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FingerprintTarget", + "name": "KubernetesClusterProvider", "ofType": null } } @@ -8872,12 +8893,32 @@ "deprecationReason": null }, { - "name": "headCommitFingerprintCounts", - "description": "Find the count of all repos that have been analyzed", + "name": "ArtifactoryMavenRepositoryProvider", + "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", - "description": "Restrict to this fingerprint name", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -8886,11 +8927,21 @@ "defaultValue": null }, { - "name": "type", - "description": "Restrict to this fingerprint type", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null @@ -8900,41 +8951,49 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FingerprintCounts", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "headCommitsWithFingerprint", - "description": "Find all repos that contain named fingerprint in the HEAD commit", + "name": "MavenRepositoryProvider", + "description": "", "args": [ { - "name": "displayName", - "description": "Restrict to this particular displayName", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "displayValue", - "description": "Restrict to this particular displayValue (type,name required)", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { "name": "name", - "description": "Restrict to this fingerprint name", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -8943,21 +9002,21 @@ "defaultValue": null }, { - "name": "repoId", - "description": "Restrict to a particular repoId", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": "Restrict to this fingerprint type", + "name": "offset", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -8973,8 +9032,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FingerprintedCommit", + "kind": "INTERFACE", + "name": "MavenRepositoryProvider", "ofType": null } } @@ -8984,12 +9043,22 @@ "deprecationReason": null }, { - "name": "AtmJob", - "description": "Return AtmJobs", + "name": "NpmJSRegistryProvider", + "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", - "description": "The id of the AtmJob to match", + "description": "", "type": { "kind": "SCALAR", "name": "ID", @@ -8999,7 +9068,7 @@ }, { "name": "name", - "description": "The name of AtmJobs to match", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -9008,36 +9077,40 @@ "defaultValue": null }, { - "name": "owner", - "description": "The owner of AtmJobs to match", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": "The state of AtmJobs to match", + "name": "offset", + "description": "", "type": { - "kind": "ENUM", - "name": "AtmJobState", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null + } } } }, @@ -9045,32 +9118,32 @@ "deprecationReason": null }, { - "name": "AtmJobTask", - "description": "Return AtmJobTasks", + "name": "NpmRegistryProvider", + "description": "", "args": [ { - "name": "id", - "description": "The id of the AtmJobTask to match", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "jobId", - "description": "The jobId of the AtmJobTask to match", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { "name": "name", - "description": "The name of AtmJobsTasks to match", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -9079,36 +9152,40 @@ "defaultValue": null }, { - "name": "owner", - "description": "The owner of the parent AtmJob", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": "The state of AtmJobTasks to match", + "name": "offset", + "description": "", "type": { - "kind": "ENUM", - "name": "AtmJobTaskState", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NpmRegistryProvider", + "ofType": null + } } } }, @@ -9116,41 +9193,41 @@ "deprecationReason": null }, { - "name": "AtomistLog", + "name": "GitHubNpmRegistryProvider", "description": "", "args": [ { - "name": "_after", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_before", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_first", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_offset", + "name": "first", "description": "", "type": { "kind": "SCALAR", @@ -9160,27 +9237,42 @@ "defaultValue": null }, { - "name": "_orderBy", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "", - "type": { - "kind": "ENUM", - "name": "_AtomistLogOrdering", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ResourceProvider", + "description": "", + "args": [ { - "name": "_search", + "name": "authProviderId", "description": "", "type": { "kind": "SCALAR", @@ -9189,24 +9281,6 @@ }, "defaultValue": null }, - { - "name": "category", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, { "name": "id", "description": "", @@ -9218,108 +9292,56 @@ "defaultValue": null }, { - "name": "level", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "_ResourceProviderOrdering", + "ofType": null } }, "defaultValue": null }, { - "name": "message", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "team_id", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistLog", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ok", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Ok", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -9327,53 +9349,45 @@ "deprecationReason": null }, { - "name": "eventsReport", - "description": "Generate a report breaking down the number of events submitted by a given team.\nThis query is in beta and may change substantially before being finalized.", + "name": "Resource", + "description": "", "args": [ { - "name": "bucketUnit", - "description": "The bucket unit to use when aggregating the counts.", + "name": "id", + "description": "", "type": { - "kind": "ENUM", - "name": "BucketUnit", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "eventTypes", - "description": "Filter the report to these types of event.", + "name": "_id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "from", - "description": "The date-time to start the report from (inclusive).", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "to", - "description": "The date-time to end the report at (exclusive).", + "name": "offset", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -9389,8 +9403,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "EventsReportRow", + "kind": "INTERFACE", + "name": "Resource", "ofType": null } } @@ -9400,173 +9414,194 @@ "deprecationReason": null }, { - "name": "throttledEventsReport", - "description": "Generate a report breaking down the number of events which have been throttled for a given team.\nThis query is in beta and may change substantially before being finalized.", + "name": "GenericResourceUser", + "description": "", "args": [ { - "name": "bucketUnit", - "description": "The bucket unit to use when aggregating the counts.", + "name": "login", + "description": "", "type": { - "kind": "ENUM", - "name": "BucketUnit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "eventTypes", - "description": "Filter the report to these types of event.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "from", - "description": "The date-time to start the report from (inclusive).", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "to", - "description": "The date-time to end the report at (exclusive).", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EventsReportRow", - "ofType": null - } - } + "kind": "OBJECT", + "name": "GenericResourceUser", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CommitIssueRelationship", - "description": "Auto-generated query for CommitIssueRelationship", + "name": "ResourceUser", + "description": "", "args": [ { - "name": "id", - "description": "The ID of this CommitIssueRelationship", + "name": "login", + "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SystemAccount", + "description": "", + "args": [ { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SystemAccount", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Credential", + "description": "", + "args": [ { - "name": "_before", - "description": "Search only before this timestamp", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "_id", + "description": "", "type": { - "kind": "ENUM", - "name": "_Ordering", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OAuthToken", + "description": "", + "args": [ { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "_id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } @@ -9576,7 +9611,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CommitIssueRelationship", + "name": "OAuthToken", "ofType": null } }, @@ -9584,12 +9619,12 @@ "deprecationReason": null }, { - "name": "Deployment", - "description": "Auto-generated query for Deployment", + "name": "Password", + "description": "", "args": [ { "name": "id", - "description": "The ID of this Deployment", + "description": "", "type": { "kind": "SCALAR", "name": "ID", @@ -9598,28 +9633,45 @@ "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Password", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GenericResourceProvider", + "description": "", + "args": [ { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "url", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -9628,70 +9680,52 @@ "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "name", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "type", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "_id", + "description": "", "type": { - "kind": "ENUM", - "name": "_Ordering", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "environment", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, + "name": "offset", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null } @@ -9701,7 +9735,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Deployment", + "name": "GenericResourceProvider", "ofType": null } }, @@ -9709,12 +9743,12 @@ "deprecationReason": null }, { - "name": "IssueRelationship", - "description": "Auto-generated query for IssueRelationship", + "name": "BinaryRepositoryProvider", + "description": "", "args": [ { "name": "id", - "description": "The ID of this IssueRelationship", + "description": "", "type": { "kind": "SCALAR", "name": "ID", @@ -9723,38 +9757,38 @@ "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "url", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "name", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "type", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BinaryRepositoryType", "ofType": null }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -9763,8 +9797,8 @@ "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "first", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -9773,66 +9807,14 @@ "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", - "type": { - "kind": "ENUM", - "name": "_Ordering", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "offset", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, - { - "name": "relationshipId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null } ], "type": { @@ -9840,7 +9822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "IssueRelationship", + "name": "BinaryRepositoryProvider", "ofType": null } }, @@ -9848,22 +9830,12 @@ "deprecationReason": null }, { - "name": "SdmGoal", - "description": "Auto-generated query for SdmGoal", + "name": "SecretProvider", + "description": "", "args": [ { - "name": "id", - "description": "The ID of this SdmGoal", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "_id", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -9872,18 +9844,18 @@ "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -9892,8 +9864,8 @@ "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "first", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -9902,64 +9874,100 @@ "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "offset", + "description": "", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SecretProvider", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CommitFingerprintImpact", + "description": "", + "args": [ { - "name": "_ordering", - "description": "Direction of ordering", + "name": "id", + "description": "", "type": { - "kind": "ENUM", - "name": "_Ordering", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "type", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - }, - { - "name": "_showHistory", - "description": "For SDMGoals only - show all of history, not just the latest", - "type": { - "kind": "SCALAR", - "name": "Boolean", + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitFingerprintImpact", "ofType": null - }, - "defaultValue": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SourceFingerprint", + "description": "Find a single SourceFingerprint by its sha, type and name", + "args": [ { - "name": "approvalRequired", - "description": null, + "name": "name", + "description": "The name of the fingerprint to retrieve", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "branch", - "description": null, + "name": "sha", + "description": "The sha of the fingerprint to retrieve", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -9970,10 +9978,10 @@ "defaultValue": null }, { - "name": "data", - "description": null, + "name": "type", + "description": "The type of the fingerprint to retrieve", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -9982,96 +9990,102 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commitsWithFingerprints", + "description": "Search for fingerprints, with paging", + "args": [ { - "name": "description", - "description": null, + "name": "_paging", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PagingInfoInput", + "ofType": null }, "defaultValue": null }, { - "name": "environment", - "description": null, + "name": "displayName", + "description": "Restrict to this particular displayName", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "error", - "description": null, + "name": "displayValue", + "description": "Restrict to this particular displayValue (type,name required)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "name", + "description": "Restrict to this fingerprint name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalUrl", - "description": null, + "name": "repoId", + "description": "Restrict to this particular repo", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSet", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitsWithFingerprints", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distinctHeadCommitFingerprints", + "description": "Search find all distinct fingerprints on head commits for type and name", + "args": [ { - "name": "goalSetId", - "description": null, + "name": "name", + "description": "Restrict to this fingerprint name", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -10082,10 +10096,10 @@ "defaultValue": null }, { - "name": "name", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -10094,12 +10108,37 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fingerprintAggregates", + "description": "", + "args": [ { - "name": "parameters", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -10110,10 +10149,10 @@ "defaultValue": null }, { - "name": "phase", - "description": null, + "name": "type", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -10122,144 +10161,214 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "FingerprintAggregates", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fingerprintTargets", + "description": "", + "args": [ { - "name": "preApprovalRequired", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "registration", - "description": null, + "name": "type", + "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintTarget", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headCommitFingerprintCounts", + "description": "Find the count of all repos that have been analyzed", + "args": [ + { + "name": "name", + "description": "Restrict to this fingerprint name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "retryFeasible", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FingerprintCounts", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headCommitsWithFingerprint", + "description": "Find all repos that contain named fingerprint in the HEAD commit", + "args": [ { - "name": "sha", - "description": null, + "name": "displayName", + "description": "Restrict to this particular displayName", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "signature", - "description": null, + "name": "displayValue", + "description": "Restrict to this particular displayValue (type,name required)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "name", + "description": "Restrict to this fingerprint name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "repoId", + "description": "Restrict to a particular repoId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "uniqueName", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintedCommit", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtmJob", + "description": "Return AtmJobs", + "args": [ + { + "name": "id", + "description": "The id of the AtmJob to match", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "url", - "description": null, + "name": "name", + "description": "The name of AtmJobs to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "version", - "description": null, + "name": "owner", + "description": "The owner of AtmJobs to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "The state of AtmJobs to match", + "type": { + "kind": "ENUM", + "name": "AtmJobState", + "ofType": null }, "defaultValue": null } @@ -10268,21 +10377,25 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoal", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmGoalSet", - "description": "Auto-generated query for SdmGoalSet", + "name": "AtmJobTask", + "description": "Return AtmJobTasks", "args": [ { "name": "id", - "description": "The ID of this SdmGoalSet", + "description": "The id of the AtmJobTask to match", "type": { "kind": "SCALAR", "name": "ID", @@ -10291,28 +10404,28 @@ "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "jobId", + "description": "The jobId of the AtmJobTask to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "name", + "description": "The name of AtmJobsTasks to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "owner", + "description": "The owner of the parent AtmJob", "type": { "kind": "SCALAR", "name": "String", @@ -10320,19 +10433,70 @@ }, "defaultValue": null }, + { + "name": "state", + "description": "The state of AtmJobTasks to match", + "type": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtomistLog", + "description": "", + "args": [ { "name": "_after", - "description": "Search only after this timestamp", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { "name": "_before", - "description": "Search only before this timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_offset", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -10340,19 +10504,29 @@ }, "defaultValue": null }, + { + "name": "_orderBy", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "_ordering", - "description": "Direction of ordering", + "description": "", "type": { "kind": "ENUM", - "name": "_Ordering", + "name": "_AtomistLogOrdering", "ofType": null }, "defaultValue": null }, { "name": "_search", - "description": "Elastic Search simple full text search syntax", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -10361,109 +10535,295 @@ "defaultValue": null }, { - "name": "branch", - "description": null, + "name": "category", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "goalSet", - "description": null, + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "level", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "goalSetId", - "description": null, + "name": "message", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "team_id", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "timestamp", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistLog", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ok", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Ok", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventsReport", + "description": "Generate a report breaking down the number of events submitted by a given team.\nThis query is in beta and may change substantially before being finalized.", + "args": [ + { + "name": "bucketUnit", + "description": "The bucket unit to use when aggregating the counts.", + "type": { + "kind": "ENUM", + "name": "BucketUnit", + "ofType": null }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "eventTypes", + "description": "Filter the report to these types of event.", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "from", + "description": "The date-time to start the report from (inclusive).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to", + "description": "The date-time to end the report at (exclusive).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsReportRow", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "throttledEventsReport", + "description": "Generate a report breaking down the number of events which have been throttled for a given team.\nThis query is in beta and may change substantially before being finalized.", + "args": [ + { + "name": "bucketUnit", + "description": "The bucket unit to use when aggregating the counts.", + "type": { + "kind": "ENUM", + "name": "BucketUnit", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "eventTypes", + "description": "Filter the report to these types of event.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "from", + "description": "The date-time to start the report from (inclusive).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to", + "description": "The date-time to end the report at (exclusive).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoalSet", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsReportRow", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmGoalDisplay", - "description": "Auto-generated query for SdmGoalDisplay", + "name": "Card", + "description": "Auto-generated query for Card", "args": [ { "name": "id", - "description": "The ID of this SdmGoalDisplay", + "description": "The ID of this Card", "type": { "kind": "SCALAR", "name": "ID", @@ -10542,7 +10902,7 @@ "defaultValue": null }, { - "name": "branch", + "name": "key", "description": null, "type": { "kind": "LIST", @@ -10556,21 +10916,21 @@ "defaultValue": null }, { - "name": "format", + "name": "post", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "sha", + "name": "shortTitle", "description": null, "type": { "kind": "LIST", @@ -10584,21 +10944,21 @@ "defaultValue": null }, { - "name": "state", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "ttl", "description": null, "type": { "kind": "LIST", @@ -10610,6 +10970,20 @@ } }, "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -10617,7 +10991,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalDisplay", + "name": "Card", "ofType": null } }, @@ -10625,12 +10999,12 @@ "deprecationReason": null }, { - "name": "SdmBuildIdentifier", - "description": "Auto-generated query for SdmBuildIdentifier", + "name": "Notification", + "description": "Auto-generated query for Notification", "args": [ { "name": "id", - "description": "The ID of this SdmBuildIdentifier", + "description": "The ID of this Notification", "type": { "kind": "SCALAR", "name": "ID", @@ -10709,69 +11083,28 @@ "defaultValue": null }, { - "name": "identifier", + "name": "body", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmBuildIdentifier", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SdmDeployEnablement", - "description": "Auto-generated query for SdmDeployEnablement", - "args": [ + }, { - "name": "id", - "description": "The ID of this SdmDeployEnablement", + "name": "contentType", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "Return the first X results (default 10)", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "correlationId", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -10780,38 +11113,8 @@ "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_before", - "description": "Search only before this timestamp", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "Direction of ordering", - "type": { - "kind": "ENUM", - "name": "_Ordering", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "key", + "description": null, "type": { "kind": "SCALAR", "name": "String", @@ -10820,7 +11123,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "post", "description": null, "type": { "kind": "LIST", @@ -10834,42 +11137,24 @@ "defaultValue": null }, { - "name": "providerId", + "name": "ts", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "repo", + "name": "ttl", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmDeployState", + "name": "Int", "ofType": null } }, @@ -10881,7 +11166,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmDeployEnablement", + "name": "Notification", "ofType": null } }, @@ -10889,12 +11174,12 @@ "deprecationReason": null }, { - "name": "SdmVersion", - "description": "Auto-generated query for SdmVersion", + "name": "CommitIssueRelationship", + "description": "Auto-generated query for CommitIssueRelationship", "args": [ { "name": "id", - "description": "The ID of this SdmVersion", + "description": "The ID of this CommitIssueRelationship", "type": { "kind": "SCALAR", "name": "ID", @@ -10973,42 +11258,14 @@ "defaultValue": null }, { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", + "name": "type", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommitIssueRelationshipType", "ofType": null } }, @@ -11020,7 +11277,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmVersion", + "name": "CommitIssueRelationship", "ofType": null } }, @@ -11028,12 +11285,12 @@ "deprecationReason": null }, { - "name": "SdmGoalSetBadge", - "description": "Auto-generated query for SdmGoalSetBadge", + "name": "Deployment", + "description": "Auto-generated query for Deployment", "args": [ { "name": "id", - "description": "The ID of this SdmGoalSetBadge", + "description": "The ID of this Deployment", "type": { "kind": "SCALAR", "name": "ID", @@ -11112,7 +11369,7 @@ "defaultValue": null }, { - "name": "sdm", + "name": "environment", "description": null, "type": { "kind": "LIST", @@ -11126,14 +11383,14 @@ "defaultValue": null }, { - "name": "token", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -11145,7 +11402,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSetBadge", + "name": "Deployment", "ofType": null } }, @@ -11153,12 +11410,12 @@ "deprecationReason": null }, { - "name": "SdmPreference", - "description": "Auto-generated query for SdmPreference", + "name": "IssueRelationship", + "description": "Auto-generated query for IssueRelationship", "args": [ { "name": "id", - "description": "The ID of this SdmPreference", + "description": "The ID of this IssueRelationship", "type": { "kind": "SCALAR", "name": "ID", @@ -11237,7 +11494,7 @@ "defaultValue": null }, { - "name": "key", + "name": "relationshipId", "description": null, "type": { "kind": "LIST", @@ -11251,21 +11508,21 @@ "defaultValue": null }, { - "name": "ttl", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "value", + "name": "type", "description": null, "type": { "kind": "LIST", @@ -11284,7 +11541,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmPreference", + "name": "IssueRelationship", "ofType": null } }, @@ -11292,12 +11549,12 @@ "deprecationReason": null }, { - "name": "SdmRepoProvenance", - "description": "Auto-generated query for SdmRepoProvenance", + "name": "SdmGoal", + "description": "Auto-generated query for SdmGoal", "args": [ { "name": "id", - "description": "The ID of this SdmRepoProvenance", + "description": "The ID of this SdmGoal", "type": { "kind": "SCALAR", "name": "ID", @@ -11374,106 +11631,103 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmRepoProvenance", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PolicyLog", - "description": "Auto-generated query for PolicyLog", - "args": [ - { - "name": "id", - "description": "The ID of this PolicyLog", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "_showHistory", + "description": "For SDMGoals only - show all of history, not just the latest", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "approvalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "data", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "description", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "environment", + "description": null, "type": { - "kind": "ENUM", - "name": "_Ordering", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "error", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "externalKey", "description": null, "type": { "kind": "LIST", @@ -11487,21 +11741,21 @@ "defaultValue": null }, { - "name": "ts", + "name": "externalUrl", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "type", + "name": "goalSet", "description": null, "type": { "kind": "LIST", @@ -11513,106 +11767,107 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PolicyCompliance", - "description": "Auto-generated query for PolicyCompliance", - "args": [ - { - "name": "id", - "description": "The ID of this PolicyCompliance", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "parameters", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "phase", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "preApprovalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "registration", + "description": null, "type": { - "kind": "ENUM", - "name": "_Ordering", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "retryFeasible", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "_branch", + "name": "sha", "description": null, "type": { "kind": "LIST", @@ -11626,7 +11881,7 @@ "defaultValue": null }, { - "name": "_owner", + "name": "signature", "description": null, "type": { "kind": "LIST", @@ -11640,35 +11895,35 @@ "defaultValue": null }, { - "name": "_repo", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalState", "ofType": null } }, "defaultValue": null }, { - "name": "_sha", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "owner", + "name": "uniqueName", "description": null, "type": { "kind": "LIST", @@ -11682,21 +11937,21 @@ "defaultValue": null }, { - "name": "state", + "name": "url", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "PolicyCompliaceState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "version", "description": null, "type": { "kind": "LIST", @@ -11715,7 +11970,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyCompliance", + "name": "SdmGoal", "ofType": null } }, @@ -11723,12 +11978,12 @@ "deprecationReason": null }, { - "name": "PolicyTargetStream", - "description": "Auto-generated query for PolicyTargetStream", + "name": "SdmGoalSet", + "description": "Auto-generated query for SdmGoalSet", "args": [ { "name": "id", - "description": "The ID of this PolicyTargetStream", + "description": "The ID of this SdmGoalSet", "type": { "kind": "SCALAR", "name": "ID", @@ -11807,7 +12062,35 @@ "defaultValue": null }, { - "name": "name", + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSetId", "description": null, "type": { "kind": "LIST", @@ -11819,6 +12102,48 @@ } }, "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -11826,7 +12151,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyTargetStream", + "name": "SdmGoalSet", "ofType": null } }, @@ -11834,12 +12159,12 @@ "deprecationReason": null }, { - "name": "PolicyTarget", - "description": "Auto-generated query for PolicyTarget", + "name": "SdmGoalDisplay", + "description": "Auto-generated query for SdmGoalDisplay", "args": [ { "name": "id", - "description": "The ID of this PolicyTarget", + "description": "The ID of this SdmGoalDisplay", "type": { "kind": "SCALAR", "name": "ID", @@ -11918,35 +12243,7 @@ "defaultValue": null }, { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "displayValue", + "name": "branch", "description": null, "type": { "kind": "LIST", @@ -11960,14 +12257,14 @@ "defaultValue": null }, { - "name": "name", + "name": "format", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", "ofType": null } }, @@ -11988,28 +12285,28 @@ "defaultValue": null }, { - "name": "streams", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "SdmGoalDisplayState", "ofType": null } }, "defaultValue": null }, { - "name": "type", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -12021,7 +12318,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyTarget", + "name": "SdmGoalDisplay", "ofType": null } }, @@ -12029,12 +12326,12 @@ "deprecationReason": null }, { - "name": "SkillOutput", - "description": "Auto-generated query for SkillOutput", + "name": "SdmBuildIdentifier", + "description": "Auto-generated query for SdmBuildIdentifier", "args": [ { "name": "id", - "description": "The ID of this SkillOutput", + "description": "The ID of this SdmBuildIdentifier", "type": { "kind": "SCALAR", "name": "ID", @@ -12113,7 +12410,7 @@ "defaultValue": null }, { - "name": "_branch", + "name": "identifier", "description": null, "type": { "kind": "LIST", @@ -12125,79 +12422,106 @@ } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmBuildIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmDeployEnablement", + "description": "Auto-generated query for SdmDeployEnablement", + "args": [ + { + "name": "id", + "description": "The ID of this SdmDeployEnablement", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "_owner", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "_repo", - "description": null, + "name": "_first", + "description": "Return the first X results (default 10)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "_sha", - "description": null, + "name": "_orderBy", + "description": "Name of property to sort on", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "classifier", - "description": null, + "name": "_after", + "description": "Search only after this timestamp", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "correlationId", - "description": null, + "name": "_before", + "description": "Search only before this timestamp", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orgParentId", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -12211,7 +12535,7 @@ "defaultValue": null }, { - "name": "repoParentId", + "name": "providerId", "description": null, "type": { "kind": "LIST", @@ -12225,7 +12549,7 @@ "defaultValue": null }, { - "name": "type", + "name": "repo", "description": null, "type": { "kind": "LIST", @@ -12239,14 +12563,14 @@ "defaultValue": null }, { - "name": "uri", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmDeployState", "ofType": null } }, @@ -12258,7 +12582,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SkillOutput", + "name": "SdmDeployEnablement", "ofType": null } }, @@ -12266,12 +12590,12 @@ "deprecationReason": null }, { - "name": "Card", - "description": "Auto-generated query for Card", + "name": "SdmVersion", + "description": "Auto-generated query for SdmVersion", "args": [ { "name": "id", - "description": "The ID of this Card", + "description": "The ID of this SdmVersion", "type": { "kind": "SCALAR", "name": "ID", @@ -12350,7 +12674,7 @@ "defaultValue": null }, { - "name": "key", + "name": "branch", "description": null, "type": { "kind": "LIST", @@ -12364,7 +12688,7 @@ "defaultValue": null }, { - "name": "post", + "name": "sha", "description": null, "type": { "kind": "LIST", @@ -12378,7 +12702,7 @@ "defaultValue": null }, { - "name": "shortTitle", + "name": "version", "description": null, "type": { "kind": "LIST", @@ -12390,37 +12714,120 @@ } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmVersion", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmGoalSetBadge", + "description": "Auto-generated query for SdmGoalSetBadge", + "args": [ + { + "name": "id", + "description": "The ID of this SdmGoalSetBadge", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "ttl", + "name": "_first", + "description": "Return the first X results (default 10)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_orderBy", + "description": "Name of property to sort on", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_after", + "description": "Search only after this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sdm", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "type", + "name": "token", "description": null, "type": { "kind": "LIST", @@ -12439,7 +12846,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Card", + "name": "SdmGoalSetBadge", "ofType": null } }, @@ -12447,12 +12854,12 @@ "deprecationReason": null }, { - "name": "Notification", - "description": "Auto-generated query for Notification", + "name": "SdmPreference", + "description": "Auto-generated query for SdmPreference", "args": [ { "name": "id", - "description": "The ID of this Notification", + "description": "The ID of this SdmPreference", "type": { "kind": "SCALAR", "name": "ID", @@ -12531,38 +12938,97 @@ "defaultValue": null }, { - "name": "body", + "name": "key", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmRepoProvenance", + "description": "Auto-generated query for SdmRepoProvenance", + "args": [ + { + "name": "id", + "description": "The ID of this SdmRepoProvenance", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "contentType", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "correlationId", - "description": null, + "name": "_first", + "description": "Return the first X results (default 10)", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "key", - "description": null, + "name": "_orderBy", + "description": "Name of property to sort on", "type": { "kind": "SCALAR", "name": "String", @@ -12571,22 +13037,18 @@ "defaultValue": null }, { - "name": "post", - "description": null, + "name": "_after", + "description": "Search only after this timestamp", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "_before", + "description": "Search only before this timestamp", "type": { "kind": "SCALAR", "name": "Int", @@ -12595,16 +13057,22 @@ "defaultValue": null }, { - "name": "ttl", - "description": null, + "name": "_ordering", + "description": "Direction of ordering", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } @@ -12614,7 +13082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Notification", + "name": "SdmRepoProvenance", "ofType": null } }, @@ -12622,12 +13090,12 @@ "deprecationReason": null }, { - "name": "AspectRegistration", - "description": "Auto-generated query for AspectRegistration", + "name": "PolicyLog", + "description": "Auto-generated query for PolicyLog", "args": [ { "name": "id", - "description": "The ID of this AspectRegistration", + "description": "The ID of this PolicyLog", "type": { "kind": "SCALAR", "name": "ID", @@ -12706,7 +13174,7 @@ "defaultValue": null }, { - "name": "category", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -12720,21 +13188,21 @@ "defaultValue": null }, { - "name": "description", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "displayName", + "name": "type", "description": null, "type": { "kind": "LIST", @@ -12746,37 +13214,106 @@ } }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyCompliance", + "description": "Auto-generated query for PolicyCompliance", + "args": [ + { + "name": "id", + "description": "The ID of this PolicyCompliance", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "endpoint", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "manageable", - "description": null, + "name": "_first", + "description": "Return the first X results (default 10)", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "_orderBy", + "description": "Name of property to sort on", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_after", + "description": "Search only after this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_branch", "description": null, "type": { "kind": "LIST", @@ -12790,7 +13327,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "_owner", "description": null, "type": { "kind": "LIST", @@ -12804,7 +13341,7 @@ "defaultValue": null }, { - "name": "shortName", + "name": "_repo", "description": null, "type": { "kind": "LIST", @@ -12818,21 +13355,21 @@ "defaultValue": null }, { - "name": "state", + "name": "_sha", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "AspectRegistrationState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "unit", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -12846,28 +13383,28 @@ "defaultValue": null }, { - "name": "url", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PolicyCompliaceState", "ofType": null } }, "defaultValue": null }, { - "name": "uuid", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -12879,7 +13416,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AspectRegistration", + "name": "PolicyCompliance", "ofType": null } }, @@ -12887,67 +13424,42 @@ "deprecationReason": null }, { - "name": "commitBySha", - "description": "Find a commit by sha", + "name": "PolicyTargetStream", + "description": "Auto-generated query for PolicyTargetStream", "args": [ { - "name": "sha", - "description": "The sha of the commit", + "name": "id", + "description": "The ID of this PolicyTargetStream", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pushBySha", - "description": "Find a Push using after-sha and branch", - "args": [ + }, { - "name": "branchName", - "description": "The branch of the Push", + "name": "_offset", + "description": "Paging offset (default 0)", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "afterSha", - "description": "The after-sha of the Push", + "name": "_first", + "description": "Return the first X results (default 10)", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "ownerName", - "description": "The owner of the repo of the Push", + "name": "_orderBy", + "description": "Name of property to sort on", "type": { "kind": "SCALAR", "name": "String", @@ -12956,65 +13468,54 @@ "defaultValue": null }, { - "name": "repoName", - "description": "The name of the repo of the Push", + "name": "_after", + "description": "Search only after this timestamp", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "linkedRepo", - "description": "Find repo by name, owner and provider id", - "args": [ + }, { - "name": "name", - "description": "Repo name", + "name": "_before", + "description": "Search only before this timestamp", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": "Repo owner", + "name": "_ordering", + "description": "Direction of ordering", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "_Ordering", + "ofType": null }, "defaultValue": null }, { - "name": "provider", - "description": "Repo provider", + "name": "_search", + "description": "Elastic Search simple full text search syntax", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -13022,22 +13523,106 @@ } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkedFingerprint", - "description": "Find SourceFingerprint by name, owner and provider id", + "name": "PolicyTarget", + "description": "Auto-generated query for PolicyTarget", "args": [ { - "name": "name", - "description": "SourceFingerprint name", + "name": "id", + "description": "The ID of this PolicyTarget", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_offset", + "description": "Paging offset (default 0)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_first", + "description": "Return the first X results (default 10)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_orderBy", + "description": "Name of property to sort on", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_after", + "description": "Search only after this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -13048,10 +13633,10 @@ "defaultValue": null }, { - "name": "sha", - "description": "SourceFingerprint sha", + "name": "displayName", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -13062,10 +13647,10 @@ "defaultValue": null }, { - "name": "type", - "description": "SourceFingerprint type", + "name": "displayValue", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -13074,25 +13659,40 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequestById", - "description": "Fetch a PR by its id", - "args": [ + }, { - "name": "id", - "description": "ID in the graph for this PR", + "name": "name", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "streams", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -13101,108 +13701,71 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkill", - "description": "", - "fields": [ - { - "name": "author", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categories", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "name": "type", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillCategory", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commands", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistChatCommand", - "ofType": null - } - } + "kind": "OBJECT", + "name": "PolicyTarget", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "configuration", - "description": "", + "name": "LifecycleAttachment", + "description": "Auto-generated query for LifecycleAttachment", "args": [ { - "name": "commitSha", - "description": "", + "name": "id", + "description": "The ID of this LifecycleAttachment", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_offset", + "description": "Paging offset (default 0)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_first", + "description": "Return the first X results (default 10)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_orderBy", + "description": "Name of property to sort on", "type": { "kind": "SCALAR", "name": "String", @@ -13211,88 +13774,164 @@ "defaultValue": null }, { - "name": "includeDefaults", - "description": "", + "name": "_after", + "description": "Search only after this timestamp", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "names", - "description": "", + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "configuration", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "skill", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LifecycleAttachmentType", + "ofType": null } }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillConfiguration", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dispatchStyle", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillEventDispatchStyle", + "name": "LifecycleAttachment", "ofType": null } }, @@ -13300,51 +13939,264 @@ "deprecationReason": null }, { - "name": "displayName", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "executions", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "name": "AspectRegistration", + "description": "Auto-generated query for AspectRegistration", + "args": [ + { + "name": "id", + "description": "The ID of this AspectRegistration", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_offset", + "description": "Paging offset (default 0)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_first", + "description": "Return the first X results (default 10)", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_orderBy", + "description": "Name of property to sort on", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_after", + "description": "Search only after this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "category", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillExecution", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "endpoint", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "manageable", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "shortName", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AspectRegistrationState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "unit", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uuid", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "homepageUrl", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AspectRegistration", "ofType": null } }, @@ -13352,48 +14204,40 @@ "deprecationReason": null }, { - "name": "iconUrl", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "commitBySha", + "description": "Find a commit by sha", + "args": [ + { + "name": "sha", + "description": "The sha of the commit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Commit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingesters", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "name": "pushBySha", + "description": "Find a Push using after-sha and branch", + "args": [ + { + "name": "branchName", + "description": "The branch of the Push", + "type": { "kind": "NON_NULL", "name": null, "ofType": { @@ -13401,94 +14245,212 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "afterSha", + "description": "The after-sha of the Push", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ownerName", + "description": "The owner of the repo of the Push", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoName", + "description": "The name of the repo of the Push", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "license", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "linkedRepo", + "description": "Find repo by name, owner and provider id", + "args": [ + { + "name": "name", + "description": "Repo name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "Repo owner", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "Repo provider", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "longDescription", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "linkedFingerprint", + "description": "Find SourceFingerprint by name, owner and provider id", + "args": [ + { + "name": "name", + "description": "SourceFingerprint name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "SourceFingerprint sha", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "SourceFingerprint type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } + ], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "pullRequestById", + "description": "Fetch a PR by its id", + "args": [ + { + "name": "id", + "description": "ID in the graph for this PR", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "description": "", + "fields": [ { - "name": "parameters", + "name": "artifacts", "description": "", "args": [], "type": { @@ -13502,7 +14464,7 @@ "name": null, "ofType": { "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", + "name": "AtomistSkillArtifact", "ofType": null } } @@ -13512,19 +14474,23 @@ "deprecationReason": null }, { - "name": "readme", + "name": "author", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "capabilities", "description": "", "args": [], "type": { @@ -13532,7 +14498,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillStatus", + "name": "AtomistSkillCapabilitiesSpec", "ofType": null } }, @@ -13540,7 +14506,7 @@ "deprecationReason": null }, { - "name": "subscriptions", + "name": "categories", "description": "", "args": [], "type": { @@ -13553,8 +14519,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillCategory", "ofType": null } } @@ -13564,7 +14530,7 @@ "deprecationReason": null }, { - "name": "technologies", + "name": "commands", "description": "", "args": [], "type": { @@ -13577,8 +14543,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillTechnology", + "kind": "OBJECT", + "name": "AtomistChatCommand", "ofType": null } } @@ -13588,7 +14554,76 @@ "deprecationReason": null }, { - "name": "version", + "name": "configuration", + "description": "", + "args": [ + { + "name": "commitSha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includeDefaults", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistSkillConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", "description": "", "args": [], "type": { @@ -13604,48 +14639,35 @@ "deprecationReason": null }, { - "name": "videoUrl", + "name": "datalogSubscriptions", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillDatalogSubscription", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillCategory", - "description": "", - "fields": [ + }, { - "name": "key", + "name": "description", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillCategoryKey", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -13653,117 +14675,59 @@ "deprecationReason": null }, { - "name": "text", + "name": "dispatchStyle", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillCategoryKey", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BUILD", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CODE_REVIEW", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DEV_EX", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DEPLOY", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SECURITY", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DEPENDENCIES", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NOTIFICATIONS", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CI", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CD", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "PRODUCTIVITY", + "name": "displayName", "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CODE_QUALITY", + "name": "executions", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillExecution", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CHAT", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistChatCommand", - "description": "", - "fields": [ - { - "name": "description", + "name": "homepageUrl", "description": "", "args": [], "type": { @@ -13779,19 +14743,23 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "iconUrl", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "id", "description": "", "args": [], "type": { @@ -13807,7 +14775,7 @@ "deprecationReason": null }, { - "name": "pattern", + "name": "inCatalog", "description": "", "args": [], "type": { @@ -13815,36 +14783,15 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "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": "AtomistSkillConfiguration", - "description": "", - "fields": [ + }, { - "name": "instances", + "name": "ingesters", "description": "", "args": [], "type": { @@ -13857,8 +14804,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationInstance", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -13868,15 +14815,15 @@ "deprecationReason": null }, { - "name": "repository", + "name": "integration", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationRepository", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -13884,42 +14831,31 @@ "deprecationReason": null }, { - "name": "upgradePolicy", + "name": "license", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillUpgradePolicy", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationInstance", - "description": "", - "fields": [ + }, { - "name": "author", + "name": "longDescription", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationAuthor", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -13927,23 +14863,31 @@ "deprecationReason": null }, { - "name": "enabled", + "name": "maturities", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "maxConfigurations", "description": "", "args": [], "type": { @@ -13951,7 +14895,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -13959,27 +14903,23 @@ "deprecationReason": null }, { - "name": "parameters", + "name": "name", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "AtomistSkillParameterValue", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", + "name": "namespace", "description": "", "args": [], "type": { @@ -13993,20 +14933,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationAuthor", - "description": "", - "fields": [ + }, { - "name": "email", + "name": "owner", "description": "", "args": [], "type": { @@ -14014,7 +14943,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -14022,42 +14951,39 @@ "deprecationReason": null }, { - "name": "name", + "name": "parameters", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "AtomistSkillParameterValue", - "description": "", - "fields": [ + }, { - "name": "name", + "name": "platform", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillExecutionPlatform", "ofType": null } }, @@ -14065,116 +14991,79 @@ "deprecationReason": null }, { - "name": "spec", + "name": "publishedAt", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AtomistSkillBooleanParameterValue", - "ofType": null }, { - "kind": "OBJECT", - "name": "AtomistSkillFloatParameterValue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillIntParameterValue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillMultiChoiceParameterValues", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillRepoFilterParameterValue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillScheduleParameterValue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillSingleChoiceParameterValue", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillStringArrayParameterValue", - "ofType": null + "name": "readme", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "kind": "OBJECT", - "name": "AtomistSkillStringParameterValue", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", - "description": "", - "fields": [ - { - "name": "description", + "name": "resourceProviders", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillResourceProviderSpec", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayName", + "name": "schemata", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillIngestionSchema", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "status", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillStatus", "ofType": null } }, @@ -14182,227 +15071,148 @@ "deprecationReason": null }, { - "name": "required", + "name": "subscriptions", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AtomistSkillBooleanParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillFloatParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillIntParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillMultiChoiceParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillRepoFilterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillScheduleParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillSingleChoiceParameterSpec", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillStringArrayParameterSpec", - "ofType": null }, { - "kind": "OBJECT", - "name": "AtomistSkillStringParameterSpec", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "AtomistSkillConfigurationRepository", - "description": "", - "fields": [ - { - "name": "commitSha", + "name": "technologies", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillTechnology", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillUpgradePolicy", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "LATEST_COMPATIBLE_BUILD", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LATEST_BUILD", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LATEST_COMPATIBLE_RELEASE", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "LATEST_RELEASE", + "name": "version", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "MANUAL", + "name": "videoUrl", "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillEventDispatchStyle", - "description": "", - "fields": null, "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "single", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": [ { - "name": "multiple", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "AtomistSkill", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "AtomistSkillExecution", + "kind": "INTERFACE", + "name": "AtomistSkill", "description": "", "fields": [ { - "name": "context", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AtomistSkillExecutionContext", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "endTime", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "eventCorrelationId", + "name": "artifacts", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillArtifact", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "executionCorrelationId", + "name": "author", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "capabilities", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "AtomistSkillCapabilitiesSpec", "ofType": null } }, @@ -14410,20 +15220,9 @@ "deprecationReason": null }, { - "name": "logs", + "name": "categories", "description": "", - "args": [ - { - "name": "severity", - "description": "", - "type": { - "kind": "ENUM", - "name": "AtomistSkillExecutionLogSeverity", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -14435,7 +15234,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillLog", + "name": "AtomistSkillCategory", "ofType": null } } @@ -14445,27 +15244,39 @@ "deprecationReason": null }, { - "name": "queueTime", + "name": "commands", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistChatCommand", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "skill", + "name": "createdAt", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkill", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -14473,27 +15284,35 @@ "deprecationReason": null }, { - "name": "startTime", + "name": "datalogSubscriptions", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillDatalogSubscription", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", + "name": "description", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillExecutionStatus", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -14501,69 +15320,51 @@ "deprecationReason": null }, { - "name": "statusTime", + "name": "dispatchStyle", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillExecutionContext", - "description": "", - "fields": [ + }, { - "name": "configuration", + "name": "displayName", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistSkillConfiguration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "triggerEvent", + "name": "homepageUrl", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillExecutionTriggerEvent", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillExecutionTriggerEvent", - "description": "", - "fields": [ + }, { - "name": "name", + "name": "iconUrl", "description": "", "args": [], "type": { @@ -14579,80 +15380,47 @@ "deprecationReason": null }, { - "name": "type", + "name": "inCatalog", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillExecutionTriggerEventType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillExecutionTriggerEventType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "command", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "subscription", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillExecutionLogSeverity", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "debug", + "name": "ingesters", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "trace", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillLog", - "description": "", - "fields": [ - { - "name": "payload", + "name": "integration", "description": "", "args": [], "type": { @@ -14660,7 +15428,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -14668,7 +15436,7 @@ "deprecationReason": null }, { - "name": "severity", + "name": "license", "description": "", "args": [], "type": { @@ -14684,7 +15452,7 @@ "deprecationReason": null }, { - "name": "timestamp", + "name": "longDescription", "description": "", "args": [], "type": { @@ -14698,118 +15466,121 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillExecutionStatus", - "description": "", - "fields": [ + }, { - "name": "message", + "name": "maturities", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "maxConfigurations", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillExecutionState", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillExecutionState", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "queued", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "success", + "name": "name", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "failed", + "name": "namespace", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timeout", + "name": "owner", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "crash", + "name": "parameters", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unknown", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillStatus", - "description": "", - "fields": [ - { - "name": "code", + "name": "platform", "description": "", "args": [], "type": { @@ -14817,7 +15588,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "AtomistSkillStatusCode", + "name": "AtomistSkillExecutionPlatform", "ofType": null } }, @@ -14825,7 +15596,7 @@ "deprecationReason": null }, { - "name": "message", + "name": "publishedAt", "description": "", "args": [], "type": { @@ -14835,228 +15606,167 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillStatusCode", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "registered", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scheduled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deploying", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "undeployed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillTechnology", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "JAVA", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "MAVEN", + "name": "readme", "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "DOCKER", + "name": "resourceProviders", "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillResourceProviderSpec", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "JAVASCRIPT", + "name": "schemata", "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillIngestionSchema", + "ofType": null + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "NPM", + "name": "subscriptions", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LEIN", + "name": "technologies", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillTechnology", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CLOJURE", + "name": "version", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "KUBERNETES", + "name": "videoUrl", "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, "inputFields": null, "interfaces": null, "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillExecutionSortField", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "start_time", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "end_time", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillExecutionSortOrder", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "possibleTypes": [ { - "name": "asc", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "ofType": null }, { - "name": "desc", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", + "ofType": null } - ], - "possibleTypes": null + ] }, { - "kind": "OBJECT", - "name": "AtomistSkills", + "kind": "INTERFACE", + "name": "AtomistSkillArtifact", "description": "", "fields": [ { - "name": "configured", - "description": "", - "args": [ - { - "name": "query", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistPagedSkills", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visible", + "name": "name", "description": "", - "args": [ - { - "name": "query", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistPagedVisibleSkills", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -15065,48 +15775,38 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "description": "", - "fields": null, - "inputFields": [ + "possibleTypes": [ { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "OBJECT", + "name": "AtomistSkillDockerArtifact", + "ofType": null }, { - "name": "namespace", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "OBJECT", + "name": "AtomistSkillGCFArtifact", + "ofType": null } - ], + ] + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistPagedSkills", + "name": "AtomistSkillCapabilitiesSpec", "description": "", "fields": [ { - "name": "skills", + "name": "provides", "description": "", "args": [], "type": { @@ -15120,7 +15820,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkill", + "name": "AtomistSkillProvidedCapabilitySpec", "ofType": null } } @@ -15128,20 +15828,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistPagedVisibleSkills", - "description": "", - "fields": [ + }, { - "name": "skills", + "name": "requires", "description": "", "args": [], "type": { @@ -15155,7 +15844,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistVisibleSkill", + "name": "AtomistSkillRequiredCapabilitySpec", "ofType": null } } @@ -15172,35 +15861,27 @@ }, { "kind": "OBJECT", - "name": "AtomistVisibleSkill", + "name": "AtomistSkillProvidedCapabilitySpec", "description": "", "fields": [ { - "name": "artifacts", + "name": "name", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillArtifact", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "author", + "name": "namespace", "description": "", "args": [], "type": { @@ -15214,57 +15895,68 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRequiredCapabilitySpec", + "description": "", + "fields": [ { - "name": "categories", + "name": "description", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillCategory", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commands", + "name": "displayName", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistChatCommand", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "maxAllowed", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minRequired", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": "", "args": [], "type": { @@ -15280,7 +15972,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "namespace", "description": "", "args": [], "type": { @@ -15296,15 +15988,15 @@ "deprecationReason": null }, { - "name": "dispatchStyle", + "name": "providers", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillEventDispatchStyle", + "kind": "OBJECT", + "name": "AtomistSkillCapabilityProviders", "ofType": null } }, @@ -15312,19 +16004,31 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "scopes", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillRequiredCapabilityScope", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "homepageUrl", + "name": "usage", "description": "", "args": [], "type": { @@ -15338,43 +16042,99 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillCapabilityProviders", + "description": "", + "fields": [ { - "name": "iconUrl", + "name": "catalog", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "configured", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingesters", + "name": "other", "description": "", - "args": [], + "args": [ + { + "name": "maturities", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, @@ -15385,8 +16145,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", "ofType": null } } @@ -15396,39 +16156,85 @@ "deprecationReason": null }, { - "name": "license", + "name": "owned", "description": "", - "args": [], + "args": [ + { + "name": "maturities", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", + "description": "", + "fields": [ { - "name": "longDescription", + "name": "artifacts", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillArtifact", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "author", "description": "", "args": [], "type": { @@ -15444,15 +16250,15 @@ "deprecationReason": null }, { - "name": "namespace", + "name": "capabilities", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillCapabilitiesSpec", "ofType": null } }, @@ -15460,23 +16266,31 @@ "deprecationReason": null }, { - "name": "owner", + "name": "categories", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillCategory", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parameters", + "name": "commands", "description": "", "args": [], "type": { @@ -15489,8 +16303,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", + "kind": "OBJECT", + "name": "AtomistChatCommand", "ofType": null } } @@ -15500,35 +16314,35 @@ "deprecationReason": null }, { - "name": "readme", + "name": "createdAt", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subscriptions", + "name": "datalogSubscriptions", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkillDatalogSubscription", + "ofType": null } } }, @@ -15536,39 +16350,31 @@ "deprecationReason": null }, { - "name": "technologies", + "name": "description", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillTechnology", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", + "name": "dispatchStyle", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", "ofType": null } }, @@ -15576,7 +16382,7 @@ "deprecationReason": null }, { - "name": "videoUrl", + "name": "displayName", "description": "", "args": [], "type": { @@ -15586,20 +16392,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillArtifact", - "description": "", - "fields": [ + }, { - "name": "entryPoint", + "name": "homepageUrl", "description": "", "args": [], "type": { @@ -15615,15 +16410,15 @@ "deprecationReason": null }, { - "name": "kind", + "name": "iconUrl", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillArtifactKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -15631,7 +16426,7 @@ "deprecationReason": null }, { - "name": "memory", + "name": "inCatalog", "description": "", "args": [], "type": { @@ -15639,7 +16434,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -15647,23 +16442,31 @@ "deprecationReason": null }, { - "name": "runtime", + "name": "ingesters", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillRuntime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timeout", + "name": "integration", "description": "", "args": [], "type": { @@ -15671,7 +16474,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, @@ -15679,7 +16482,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "license", "description": "", "args": [], "type": { @@ -15693,72 +16496,9 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillArtifactKind", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "RAW_ZIP", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GOOGLE_CLOUD_FUNCTION", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillRuntime", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "nodejs10", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "python37", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "go113", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamConfiguration", - "description": "", - "fields": [ - { - "name": "namespace", + "name": "longDescription", "description": "", "args": [], "type": { @@ -15774,23 +16514,31 @@ "deprecationReason": null }, { - "name": "name", + "name": "maturities", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", + "name": "maxConfigurations", "description": "", "args": [], "type": { @@ -15798,7 +16546,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -15806,19 +16554,23 @@ "deprecationReason": null }, { - "name": "ttlSecs", + "name": "name", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "namespace", "description": "", "args": [], "type": { @@ -15834,59 +16586,64 @@ "deprecationReason": null }, { - "name": "team", + "name": "owner", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "Boolean", "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", + "name": "parameters", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Team", + "name": "platform", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionPlatform", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Team", + "name": "publishedAt", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15897,8 +16654,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of Team", + "name": "readme", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15909,207 +16666,103 @@ "deprecationReason": null }, { - "name": "description", - "description": "description of Team", + "name": "resourceProviders", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillResourceProviderSpec", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "iconUrl", - "description": "iconUrl of Team", + "name": "schemata", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillIngestionSchema", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Team", + "name": "subscriptions", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "persons", - "description": "Team persons Person", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", + "name": "technologies", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "AtomistSkillTechnology", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Org", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16117,76 +16770,44 @@ "deprecationReason": null }, { - "name": "providers", - "description": "Team providers GitHubProvider", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "videoUrl", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkill", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillCategory", + "description": "", + "fields": [ + { + "name": "key", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GitHubProvider", + "kind": "ENUM", + "name": "AtomistSkillCategoryKey", "ofType": null } }, @@ -16194,36 +16815,15 @@ "deprecationReason": null }, { - "name": "resourceProviders", + "name": "sortOrder", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -16231,231 +16831,171 @@ "deprecationReason": null }, { - "name": "scmProviders", - "description": "Team scmProviders SCMProvider", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "text", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillCategoryKey", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "BUILD", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "chatTeams", - "description": "Team chatTeams ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tenantId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "CHAT", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CODE_MAINTENANCE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CODE_QUALITY", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CODE_REVIEW", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEPENDENCIES", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEPLOY", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEVEX", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DEVOPS", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ISSUES", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MONITOR", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NOTIFICATIONS", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PROJECT_MANAGEMENT", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "REPO_MANAGEMENT", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SECURITY", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistChatCommand", + "description": "", + "fields": [ + { + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16463,26 +17003,58 @@ "deprecationReason": null }, { - "name": "configuration", + "name": "pattern", "description": "", - "args": [ - { - "name": "namespace", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillDatalogSubscription", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamConfiguration", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "query", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16497,69 +17069,220 @@ }, { "kind": "ENUM", - "name": "_PersonOrdering", - "description": "Ordering Enum for Person", + "name": "AtomistSkillEventDispatchStyle", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "single", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "multiple", + "description": "", "isDeprecated": false, "deprecationReason": 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": "ENUM", + "name": "AtomistSkillMaturityLevel", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "stable", + "description": "Release quality", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "testing", + "description": "Candidate for next release, but might still have issues", "isDeprecated": false, "deprecationReason": null }, { - "name": "forename_asc", - "description": "Ascending sort for forename", + "name": "unstable", + "description": "CI build - expect bugs", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "description": "", + "fields": [ + { + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "forename_desc", - "description": "Descending sort for forename", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "surname_asc", - "description": "Ascending sort for surname", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "surname_desc", - "description": "Descending sort for surname", + "name": "required", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AtomistSkillBooleanParameterSpec", + "ofType": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "kind": "OBJECT", + "name": "AtomistSkillChatChannelsParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillFileFilterParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillFloatParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillIntParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillMultiChoiceParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillScheduleParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillSecretParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillSingleChoiceParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillStringArrayParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillStringParameterSpec", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillWebhookParameterSpec", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "AtomistSkillExecutionPlatform", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "gcf", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "docker", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -16568,52 +17291,52 @@ }, { "kind": "OBJECT", - "name": "Person", - "description": "Person-Node", + "name": "AtomistSkillResourceProviderSpec", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "description", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Person", + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "forename", - "description": "forename of Person", + "name": "maxAllowed", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "surname", - "description": "surname of Person", + "name": "minRequired", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -16621,37 +17344,57 @@ }, { "name": "name", - "description": "name of Person", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceUsers", + "name": "typeName", "description": "", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillIngestionSchema", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16659,406 +17402,177 @@ "deprecationReason": null }, { - "name": "scmId", - "description": "Person scmId SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "schema", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillTechnology", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "JAVA", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "gitHubId", - "description": "Person gitHubId GitHubId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - }, + "name": "MAVEN", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "chatId", - "description": "Person chatId ChatId", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, + "name": "DOCKER", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "emails", - "description": "Person emails Email", - "args": [ - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, + "name": "JAVASCRIPT", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "Person team Team", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, + "name": "NPM", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LEIN", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CLOJURE", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "KUBERNETES", + "description": "", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "INTERFACE", - "name": "ResourceUser", + "kind": "ENUM", + "name": "AtomistSkillRequiredCapabilityScope", "description": "", - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_typenames", + "name": "ingestion", "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "configuration", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "hidden", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", + "name": "advanced", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "normal", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillConfiguration", + "description": "", + "fields": [ + { + "name": "instances", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillConfigurationInstance", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", + "name": "repository", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "OBJECT", + "name": "AtomistSkillConfigurationRepository", "ofType": null } }, @@ -17066,15 +17580,15 @@ "deprecationReason": null }, { - "name": "login", + "name": "upgradePolicy", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillUpgradePolicy", "ofType": null } }, @@ -17083,51 +17597,25 @@ } ], "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GitHubAppResourceUser", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GenericResourceUser", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SystemAccount", - "ofType": null - } - ] + "possibleTypes": null }, { - "kind": "INTERFACE", - "name": "Credential", + "kind": "OBJECT", + "name": "AtomistSkillConfigurationInstance", "description": "", "fields": [ { - "name": "_typenames", + "name": "author", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillConfigurationAuthor", "ofType": null } }, @@ -17135,23 +17623,27 @@ "deprecationReason": null }, { - "name": "_id", + "name": "capabilities", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillCapabilityProviderValue", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "displayName", "description": "", "args": [], "type": { @@ -17159,7 +17651,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -17167,53 +17659,31 @@ "deprecationReason": null }, { - "name": "owner", + "name": "enabled", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ + }, { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Password", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "description": "", - "fields": [ - { - "name": "_typenames", + "name": "id", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -17221,7 +17691,7 @@ "deprecationReason": null }, { - "name": "_id", + "name": "name", "description": "", "args": [], "type": { @@ -17229,7 +17699,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -17237,106 +17707,98 @@ "deprecationReason": null }, { - "name": "id", + "name": "parameters", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "resourceProviders", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillResourceProviderValue", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "updatedAt", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillConfigurationAuthor", + "description": "", + "fields": [ { - "name": "state", + "name": "email", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "name", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhooks", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17345,66 +17807,51 @@ } ], "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DockerRegistryProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "GenericResourceProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "BinaryRepositoryProvider", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "ofType": null - } - ] + "possibleTypes": null }, { "kind": "OBJECT", - "name": "ResourceProviderState", + "name": "AtomistSkillCapabilityProviderValue", "description": "", "fields": [ { - "name": "error", + "name": "providers", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillCapabilityProviderDetails", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "spec", "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "ResourceProviderStateName", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillRequiredCapabilitySpec", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -17416,48 +17863,29 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ResourceProviderStateName", + "kind": "OBJECT", + "name": "AtomistSkillCapabilityProviderDetails", "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "converged", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unconverged", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "misconfigured", + "name": "configurationName", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "unauthorized", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Webhook", - "description": "Webhook-Node", - "fields": [ { "name": "name", - "description": "just a name", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -17472,24 +17900,35 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Webhook", + "name": "namespace", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "description": "", + "fields": [ { - "name": "url", - "description": "url of Webhook", + "name": "name", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -17504,31 +17943,120 @@ "deprecationReason": null }, { - "name": "authType", - "description": "type of validation", + "name": "spec", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AtomistSkillBooleanParameterValue", + "ofType": null }, { - "name": "provider", + "kind": "OBJECT", + "name": "AtomistSkillChatChannelsParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillFileFilterParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillFloatParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillIntParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillMultiChoiceParameterValues", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillScheduleParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillSecretParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillSingleChoiceParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillStringArrayParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillStringParameterValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillWebhookParameterValue", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "AtomistSkillResourceProviderValue", + "description": "", + "fields": [ + { + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17536,31 +18064,39 @@ "deprecationReason": null }, { - "name": "tags", + "name": "selectedResourceProviders", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistKeyValuePair", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillSelectedResourceProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "typeName", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17573,36 +18109,13 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "WebhookAuthType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "hmac_sha1", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "none", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "AtomistKeyValuePair", + "name": "AtomistSkillSelectedResourceProvider", "description": "", "fields": [ { - "name": "name", + "name": "id", "description": "", "args": [], "type": { @@ -17616,9 +18129,20 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillConfigurationRepository", + "description": "", + "fields": [ { - "name": "value", + "name": "commitSha", "description": "", "args": [], "type": { @@ -17641,20 +18165,32 @@ }, { "kind": "ENUM", - "name": "WebhookState", + "name": "AtomistSkillUpgradePolicy", "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "enabled", + "name": "stable", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "disabled", + "name": "unstable", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "testing", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manual", "description": "", "isDeprecated": false, "deprecationReason": null @@ -17664,35 +18200,19 @@ }, { "kind": "OBJECT", - "name": "SCMId", - "description": "SCMId-Node", + "name": "AtomistSkillExecution", + "description": "", "fields": [ { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", + "name": "context", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "AtomistSkillExecutionContext", "ofType": null } }, @@ -17700,36 +18220,20 @@ "deprecationReason": null }, { - "name": "_id", - "description": "internal node id", + "name": "endTime", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "login of SCMId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of SCMId", + "name": "eventCorrelationId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17740,8 +18244,8 @@ "deprecationReason": null }, { - "name": "avatar", - "description": "avatar of SCMId", + "name": "executionCorrelationId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17752,141 +18256,158 @@ "deprecationReason": null }, { - "name": "credential", + "name": "id", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", + "name": "logs", "description": "", "args": [ { - "name": "id", + "name": "_after", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "SCMId emails Email", - "args": [ + }, { - "name": "orderBy", + "name": "_before", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "categories", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogCategory", + "ofType": null + } } }, "defaultValue": null }, { - "name": "first", + "name": "category", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "AtomistSkillExecutionLogCategory", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "severities", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogSeverity", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "address", + "name": "severity", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillExecutionLogSeverity", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillLog", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "SCMId person Person", + "name": "pagedLogs", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", + "name": "filter", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillLogFilter", "ofType": null }, "defaultValue": null }, { - "name": "surname", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "pageKey", "description": "", "type": { "kind": "SCALAR", @@ -17897,36 +18418,23 @@ } ], "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillLogsPage", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OAuthToken", - "description": "", - "fields": [ + }, { - "name": "_typenames", + "name": "queueTime", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -17938,15 +18446,15 @@ "deprecationReason": null }, { - "name": "_id", + "name": "skill", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", "ofType": null } }, @@ -17954,23 +18462,19 @@ "deprecationReason": null }, { - "name": "id", + "name": "startTime", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", + "name": "status", "description": "", "args": [], "type": { @@ -17978,7 +18482,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "AtomistSkillExecutionStatus", "ofType": null } }, @@ -17986,39 +18490,43 @@ "deprecationReason": null }, { - "name": "scopes", + "name": "statusTime", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggerCorrelationId", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "secret", + "name": "visibility", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillExecutionVisibility", "ofType": null } }, @@ -18027,39 +18535,56 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SCMProvider", - "description": "SCMProvider-Node", + "name": "AtomistSkillExecutionContext", + "description": "", "fields": [ { - "name": "_typenames", + "name": "configuration", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "OBJECT", + "name": "AtomistSkillConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggerEvent", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillExecutionTriggerEvent", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillExecutionTriggerEvent", + "description": "", + "fields": [ { - "name": "_id", + "name": "name", "description": "", "args": [], "type": { @@ -18067,7 +18592,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -18075,47 +18600,143 @@ "deprecationReason": null }, { - "name": "id", + "name": "type", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "AtomistSkillExecutionTriggerEventType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillExecutionTriggerEventType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "command", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "subscription", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "webhook", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogCategory", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "developer", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogSeverity", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "error", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "warn", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "info", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "debug", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trace", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillLog", + "description": "", + "fields": [ + { + "name": "category", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", + "name": "id", "description": "", "args": [], "type": { @@ -18131,19 +18752,23 @@ "deprecationReason": null }, { - "name": "private", + "name": "payload", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl", + "name": "severity", "description": "", "args": [], "type": { @@ -18159,7 +18784,7 @@ "deprecationReason": null }, { - "name": "gitUrl", + "name": "timestamp", "description": "", "args": [], "type": { @@ -18173,183 +18798,154 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillLogFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "category_in", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogCategory", + "ofType": null + } + } + }, + "defaultValue": null }, { - "name": "providerType", + "name": "severity_in", "description": "", - "args": [], "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionLogSeverity", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp_gt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetConfiguration", + "name": "timestamp_gte", "description": "", - "args": [], "type": { - "kind": "OBJECT", - "name": "SCMProviderSpec", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lte", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillLogsPage", + "description": "", + "fields": [ + { + "name": "logs", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillLog", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "nextPageKey", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillExecutionStatus", + "description": "", + "fields": [ { - "name": "team", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orgs", - "description": "", - "args": [ - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authProviderId", + "name": "message", "description": "", "args": [], "type": { @@ -18361,38 +18957,15 @@ "deprecationReason": null }, { - "name": "credential", + "name": "state", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhooks", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "ENUM", + "name": "AtomistSkillExecutionState", "ofType": null } }, @@ -18401,50 +18974,62 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ProviderType", - "description": "Enum for ProviderType", + "name": "AtomistSkillExecutionState", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "bitbucket_cloud", + "name": "queued", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "github_com", + "name": "running", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "ghe", + "name": "completed", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "bitbucket", + "name": "success", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitlab", + "name": "failed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeout", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "crash", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unknown", "description": "", "isDeprecated": false, "deprecationReason": null @@ -18453,79 +19038,43 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SCMProviderSpec", + "kind": "ENUM", + "name": "AtomistSkillExecutionVisibility", "description": "", - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "orgSpecs", + "name": "visible", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repoSpecs", + "name": "hidden", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProviderRepoSpec", - "ofType": null - } - } - } - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SCMProviderRepoSpec", + "name": "AtomistSkillStatus", "description": "", "fields": [ { - "name": "ownerSpec", + "name": "code", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillStatusCode", "ofType": null } }, @@ -18533,17 +19082,13 @@ "deprecationReason": null }, { - "name": "nameSpec", + "name": "message", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -18556,57 +19101,68 @@ }, { "kind": "ENUM", - "name": "_OrgOrdering", - "description": "Ordering Enum for Org", + "name": "AtomistSkillStatusCode", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "registered", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "scheduled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "deploying", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_asc", - "description": "Ascending sort for owner", + "name": "error", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_desc", - "description": "Descending sort for owner", + "name": "undeployed", + "description": "", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillExecutionSortField", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "ownerType_asc", - "description": "Ascending sort for ownerType", + "name": "start_time", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType_desc", - "description": "Descending sort for ownerType", + "name": "end_time", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -18615,20 +19171,20 @@ }, { "kind": "ENUM", - "name": "OwnerType", + "name": "AtomistSkillExecutionSortOrder", "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "user", + "name": "asc", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "organization", + "name": "desc", "description": "", "isDeprecated": false, "deprecationReason": null @@ -18637,469 +19193,783 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Org", + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionFilter", "description": "", - "fields": [ + "fields": null, + "inputFields": [ { - "name": "_id", + "name": "context_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionContextFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "url", + "name": "skill_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "status_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionStatusFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "owner", + "name": "triggerCorrelationId_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ownerType", + "name": "visibility_in", "description": "", - "args": [], "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionVisibility", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionContextFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "avatarUrl", + "name": "configuration_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "description", + "name": "triggerEvent_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionTriggerEventFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "state", + "name": "instances_in", "description": "", - "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationInstanceFilter", + "ofType": null + } + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "provider", + "name": "repository_in", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationRepositoryFilter", "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationInstanceFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name_in", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillConfigurationRepositoryFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "commitSha_in", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionTriggerEventFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name_in", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "", - "type": { + } + } + }, + "defaultValue": null + }, + { + "name": "type_in", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "ENUM", - "name": "ProviderType", + "name": "AtomistSkillExecutionTriggerEventType", "ofType": null - }, - "defaultValue": null + } } - ], + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", "type": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "scmProvider", + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_AtomistSkillExecutionStatusFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillExecutionState", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkills", + "description": "", + "fields": [ + { + "name": "configured", "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", + "name": "query", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistPagedConfiguredSkills", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", + "name": "owned", "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", + "name": "query", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "AtomistPagedRegisteredSkills", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "repos", + "name": "namespace", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "showDerived", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistPagedConfiguredSkills", + "description": "", + "fields": [ + { + "name": "skills", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ConfiguredAtomistSkill", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistPagedRegisteredSkills", + "description": "", + "fields": [ + { + "name": "skills", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamConfiguration", + "description": "", + "fields": [ + { + "name": "namespace", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ttlSecs", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "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": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "the URL of the Team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "defaultValue": null }, { - "name": "gitHubId", + "name": "forename", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -19116,7 +19986,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_PersonOrdering", "ofType": null } }, @@ -19143,7 +20013,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -19158,7 +20028,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "Person", "ofType": null } }, @@ -19166,8 +20036,8 @@ "deprecationReason": null }, { - "name": "chatTeam", - "description": "", + "name": "orgs", + "description": "Team orgs Org", "args": [ { "name": "id", @@ -19180,17 +20050,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -19200,70 +20060,78 @@ "defaultValue": null }, { - "name": "tenantId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_OrgOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "domain", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "messageCount", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "emailDomain", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", + "name": "providers", + "description": "Team providers GitHubProvider", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -19273,7 +20141,7 @@ "defaultValue": null }, { - "name": "description", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -19283,7 +20151,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -19293,7 +20161,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -19301,73 +20169,24 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "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": "GitHubProvider", - "description": "GitHubProvider-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubProvider", "ofType": null } }, @@ -19375,27 +20194,36 @@ "deprecationReason": null }, { - "name": "private", - "description": "private is this provider reachable on the public internet", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", - "args": [], + "name": "resourceProviders", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -19403,43 +20231,126 @@ "deprecationReason": null }, { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType", - "description": "providerType of GitHubProvider", - "args": [], + "name": "scmProviders", + "description": "Team scmProviders SCMProvider", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SCMProviderOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "GitHubProvider team Team", + "name": "chatTeams", + "description": "Team chatTeams ChatTeam", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -19455,7 +20366,7 @@ "defaultValue": null }, { - "name": "description", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -19465,7 +20376,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -19475,7 +20386,61 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "domain", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "messageCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatTeamOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -19486,9 +20451,40 @@ } ], "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatTeam", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "configuration", + "description": "", + "args": [ + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -19501,8 +20497,8 @@ }, { "kind": "ENUM", - "name": "_RepoOrdering", - "description": "Ordering Enum for Repo", + "name": "_PersonOrdering", + "description": "Ordering Enum for Person", "fields": null, "inputFields": null, "interfaces": null, @@ -19532,98 +20528,38 @@ "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", + "name": "forename_asc", + "description": "Ascending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "repoId_desc", - "description": "Descending sort for repoId", + "name": "forename_desc", + "description": "Descending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", + "name": "surname_asc", + "description": "Ascending sort for surname", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", + "name": "surname_desc", + "description": "Descending sort for surname", "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultBranch_asc", - "description": "Ascending sort for defaultBranch", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultBranch_desc", - "description": "Descending sort for defaultBranch", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null } @@ -19632,12 +20568,12 @@ }, { "kind": "OBJECT", - "name": "Repo", - "description": "Repo-Node", + "name": "Person", + "description": "Person-Node", "fields": [ { "name": "_id", - "description": "", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", @@ -19647,21 +20583,9 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "url", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "id", - "description": "", + "description": "id of Person", "args": [], "type": { "kind": "SCALAR", @@ -19672,68 +20596,8 @@ "deprecationReason": null }, { - "name": "owner", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId", - "description": "", + "name": "forename", + "description": "forename of Person", "args": [], "type": { "kind": "SCALAR", @@ -19744,8 +20608,8 @@ "deprecationReason": null }, { - "name": "gitHubId", - "description": "", + "name": "surname", + "description": "surname of Person", "args": [], "type": { "kind": "SCALAR", @@ -19756,8 +20620,8 @@ "deprecationReason": null }, { - "name": "defaultBranch", - "description": "", + "name": "name", + "description": "name of Person", "args": [], "type": { "kind": "SCALAR", @@ -19768,21 +20632,38 @@ "deprecationReason": null }, { - "name": "labels", + "name": "resourceUsers", "description": "", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scmId", + "description": "Person scmId SCMId", + "args": [ { - "name": "name", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -19792,7 +20673,7 @@ "defaultValue": null }, { - "name": "default", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -19802,41 +20683,40 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId", + "description": "Person gitHubId GitHubId", + "args": [ { - "name": "offset", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "color", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -19847,20 +20727,16 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } + "kind": "OBJECT", + "name": "GitHubId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "", + "name": "chatId", + "description": "Person chatId ChatId", "args": [ { "name": "id", @@ -19873,7 +20749,7 @@ "defaultValue": null }, { - "name": "name", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -19883,7 +20759,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -19893,7 +20769,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -19903,7 +20779,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -19913,98 +20789,47 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "isAdmin", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archived", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "org", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -20012,144 +20837,20 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "Org", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "issue", - "description": "", + "name": "emails", + "description": "Person emails Email", "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -20158,7 +20859,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -20185,7 +20886,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -20200,7 +20901,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "Email", "ofType": null } }, @@ -20208,56 +20909,12 @@ "deprecationReason": null }, { - "name": "issues", - "description": "", + "name": "team", + "description": "Person team Team", "args": [ { "name": "id", "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -20266,7 +20923,7 @@ "defaultValue": null }, { - "name": "body", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -20276,17 +20933,7 @@ "defaultValue": null }, { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -20296,7 +20943,7 @@ "defaultValue": null }, { - "name": "action", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -20314,68 +20961,37 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ResourceUser", + "description": "", + "fields": [ + { + "name": "_typenames", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Issue", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -20383,7 +20999,47 @@ "deprecationReason": null }, { - "name": "pullRequest", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", "description": "", "args": [ { @@ -20395,212 +21051,14 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PullRequest", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -20608,271 +21066,68 @@ "deprecationReason": null }, { - "name": "pullRequests", + "name": "login", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PullRequest", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null }, { - "name": "pushes", + "kind": "OBJECT", + "name": "GitHubId", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GitHubAppResourceUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GenericResourceUser", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SystemAccount", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "Credential", + "description": "", + "fields": [ + { + "name": "_typenames", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Push", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -20880,100 +21135,15 @@ "deprecationReason": null }, { - "name": "branches", - "description": "Repo branches Branch", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -20981,163 +21151,110 @@ "deprecationReason": null }, { - "name": "links", - "description": "Repo links ChannelLink", - "args": [ - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "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", + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null }, { - "name": "default_asc", - "description": "Ascending sort for default", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "Password", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "description": "", + "fields": [ { - "name": "default_desc", - "description": "Descending sort for default", + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "color_asc", - "description": "Ascending sort for color", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "color_desc", - "description": "Descending sort for color", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Label", - "description": "Label-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the url of the Label", + "name": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -21148,20 +21265,24 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Label", + "name": "team", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Label", + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -21172,32 +21293,32 @@ "deprecationReason": null }, { - "name": "default", - "description": "default of Label", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "color", - "description": "color of Label", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Label repo Repo", + "name": "webhooks", + "description": "", "args": [ { "name": "id", @@ -21208,337 +21329,538 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "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", + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "updatedBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "metadata", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null }, { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null }, { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "DockerRegistryProvider", + "ofType": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "ofType": null }, { - "name": "normalizedName_asc", - "description": "Ascending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "ofType": null }, { - "name": "normalizedName_desc", - "description": "Descending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null }, { - "name": "channelId_asc", - "description": "Ascending sort for channelId", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", + "ofType": null }, { - "name": "channelId_desc", - "description": "Descending sort for channelId", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null }, { - "name": "isDefault_asc", - "description": "Ascending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "ofType": null }, { - "name": "isDefault_desc", - "description": "Descending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null }, { - "name": "botInvitedSelf_asc", - "description": "Ascending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null }, { - "name": "botInvitedSelf_desc", - "description": "Descending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GenericResourceProvider", + "ofType": null }, { - "name": "archived_asc", - "description": "Ascending sort for archived", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "ofType": null }, { - "name": "archived_desc", - "description": "Descending sort for archived", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "SecretProvider", + "ofType": null } - ], - "possibleTypes": null + ] }, { "kind": "OBJECT", - "name": "ChatChannel", - "description": "ChatChannel-Node", + "name": "ResourceProviderState", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "error", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of ChatChannel", + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "ResourceProviderStateName", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ResourceProviderStateName", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", - "description": "name of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "converged", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "provider of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unconverged", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "misconfigured", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "channelId", - "description": "channelId of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unauthorized", + "description": "", "isDeprecated": false, "deprecationReason": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Webhook", + "description": "Webhook-Node", + "fields": [ + { + "name": "name", + "description": "just a name", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "id of Webhook", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "url of Webhook", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authType", + "description": "type of validation", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WebhookAuthType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tags", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistKeyValuePair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WebhookState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WebhookAuthType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "hmac_sha1", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "none", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistKeyValuePair", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "WebhookState", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "enabled", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disabled", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "description": "", + "fields": [ + { + "name": "events", + "description": "The 20 most recenetly receieved events to this ResourceProvider", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventLastReceived", + "description": "A timestamp of when we last received an event on this ResourceProvider", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SCMId", + "description": "SCMId-Node", + "fields": [ { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", + "name": "name", + "description": "name of SCMId", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "archived", - "description": "archived of ChatChannel", + "name": "avatar", + "description": "avatar of SCMId", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdBy", - "description": "ChatChannel createdBy ChatId", + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "", "args": [ { "name": "id", @@ -21549,190 +21871,24 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "screenName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repos", - "description": "ChatChannel repos Repo", + "name": "emails", + "description": "SCMId emails Email", "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -21741,7 +21897,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -21768,7 +21924,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -21783,7 +21939,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "Email", "ofType": null } }, @@ -21791,211 +21947,68 @@ "deprecationReason": null }, { - "name": "links", - "description": "ChatChannel links ChannelLink", + "name": "person", + "description": "SCMId person Person", "args": [ { - "name": "orderBy", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "forename", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "surname", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "members", - "description": "ChatChannel members ChatId", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "_typenames", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatId", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -22003,162 +22016,190 @@ "deprecationReason": null }, { - "name": "team", - "description": "ChatChannel team ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tenantId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "ChatTeam", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "login", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ChatId", - "description": "ChatId-Node", + "name": "OAuthToken", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "owner", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of ChatId", + "name": "scopes", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "screenName", - "description": "screenName of ChatId", + "name": "secret", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", - "description": "userId of ChatId", + "name": "_typenames", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "provider of ChatId", + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SCMProvider", + "description": "SCMProvider-Node", + "fields": [ + { + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -22169,91 +22210,95 @@ "deprecationReason": null }, { - "name": "isOwner", - "description": "isOwner of ChatId", + "name": "providerId", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", + "name": "private", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAdmin", - "description": "isAdmin of ChatId", + "name": "apiUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot", - "description": "isBot of ChatId", + "name": "gitUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerType", + "description": "", + "args": [], + "type": { + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", + "name": "targetConfiguration", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMProviderSpec", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "ChatId channels ChatChannel", + "name": "orgs", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -22263,85 +22308,45 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_OrgOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "channelId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isDefault", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archived", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -22352,7 +22357,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Org", "ofType": null } }, @@ -22360,26 +22365,27 @@ "deprecationReason": null }, { - "name": "emails", - "description": "ChatId emails Email", - "args": [ - { - "name": "address", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_typenames", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Email", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -22387,179 +22393,59 @@ "deprecationReason": null }, { - "name": "chatTeam", - "description": "ChatId chatTeam ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tenantId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "ChatTeam", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channelsCreated", - "description": "ChatId channelsCreated ChatChannel", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archived", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Team", "ofType": null } }, @@ -22567,8 +22453,32 @@ "deprecationReason": null }, { - "name": "person", - "description": "ChatId person Person", + "name": "authProviderId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", + "description": "", "args": [ { "name": "id", @@ -22579,397 +22489,208 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "forename", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preferences", - "description": "Return a user's preferences", + "name": "createdAt", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UserPreference", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Email", - "description": "Email-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "updatedAt", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "address", - "description": "address of Email", + "name": "createdBy", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scmId", - "description": "Email scmId SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "SCMId", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId", - "description": "Email gitHubId GitHubId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "metadata", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "GitHubId", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProviderType", + "description": "Enum for ProviderType", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bitbucket_cloud", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "chatId", - "description": "Email chatId ChatId", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAtomistBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isPrimaryOwner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isAdmin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isBot", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timezoneLabel", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, + "name": "github_com", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "Email person Person", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "ghe", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bitbucket", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitlab", + "description": "", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "GitHubId", - "description": "GitHubId-Node", + "name": "SCMProviderSpec", + "description": "", "fields": [ { - "name": "_typenames", + "name": "orgSpecs", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "repoSpecs", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProviderRepoSpec", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SCMProviderRepoSpec", + "description": "", + "fields": [ { - "name": "login", - "description": "login of GitHubId", + "name": "ownerSpec", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -22984,186 +22705,31 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of GitHubId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credential", + "name": "nameSpec", "description": "", "args": [], - "type": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "GitHubId emails Email", - "args": [ - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "person", - "description": "GitHubId person Person", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "surname", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_EmailOrdering", - "description": "Ordering Enum for Email", + "name": "_OrgOrdering", + "description": "Ordering Enum for Org", "fields": null, "inputFields": null, "interfaces": null, @@ -23181,14 +22747,38 @@ "deprecationReason": null }, { - "name": "address_asc", - "description": "Ascending sort for address", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "address_desc", - "description": "Descending sort for address", + "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 } @@ -23196,23 +22786,36 @@ "possibleTypes": null }, { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "kind": "ENUM", + "name": "OwnerType", + "description": "", "fields": null, "inputFields": null, "interfaces": null, - "enumValues": null, + "enumValues": [ + { + "name": "user", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organization", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "OBJECT", - "name": "ChatTeam", - "description": "ChatTeam-Node", + "name": "Org", + "description": "", "fields": [ { "name": "_id", - "description": "internal node id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -23223,20 +22826,8 @@ "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", + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -23247,20 +22838,20 @@ "deprecationReason": null }, { - "name": "provider", - "description": "provider of ChatTeam", + "name": "id", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tenantId", - "description": "This ChatTeams tenantId if available for this provider", + "name": "owner", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -23271,20 +22862,20 @@ "deprecationReason": null }, { - "name": "serviceUrl", - "description": "This is the url for accessing the API on this ChatTeam", + "name": "ownerType", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "domain", - "description": "domain of ChatTeam", + "name": "avatarUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -23295,20 +22886,20 @@ "deprecationReason": null }, { - "name": "messageCount", - "description": "messageCount of ChatTeam", + "name": "description", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", + "name": "state", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -23319,32 +22910,32 @@ "deprecationReason": null }, { - "name": "state", - "description": "Determines whether or not we have finished ingesting the initial set of ChatChannels and ChatIds", + "name": "initializationState", + "description": "", "args": [], "type": { "kind": "ENUM", - "name": "ChatTeamState", + "name": "OrgInitializationState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "initialChatChannelCount", - "description": "The number of ChatChannels to be loaded during initialization.", + "name": "installation", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "GitHubAppInstallation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "orgs", - "description": "ChatTeam orgs Org", + "name": "provider", + "description": "", "args": [ { "name": "id", @@ -23357,7 +22948,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -23367,65 +22958,57 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "providerId", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ownerType", + "name": "providerType", "description": "", "type": { "kind": "ENUM", - "name": "OwnerType", + "name": "ProviderType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } + "kind": "OBJECT", + "name": "GitHubProvider", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "ChatTeam channels ChatChannel", + "name": "scmProvider", + "description": "", "args": [ { "name": "id", @@ -23438,7 +23021,7 @@ "defaultValue": null }, { - "name": "name", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -23448,7 +23031,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -23458,7 +23041,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -23468,7 +23051,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -23478,7 +23061,60 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", @@ -23488,7 +23124,17 @@ "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", @@ -23497,6 +23143,26 @@ }, "defaultValue": null }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -23505,7 +23171,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatChannelOrdering", + "name": "_RepoOrdering", "ofType": null } }, @@ -23532,11 +23198,11 @@ "defaultValue": null }, { - "name": "archived", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -23547,7 +23213,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Repo", "ofType": null } }, @@ -23555,8 +23221,8 @@ "deprecationReason": null }, { - "name": "members", - "description": "ChatTeam members ChatId", + "name": "repos", + "description": "", "args": [ { "name": "id", @@ -23569,17 +23235,7 @@ "defaultValue": null }, { - "name": "screenName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -23589,7 +23245,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -23599,37 +23255,37 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isOwner", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isAdmin", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -23639,7 +23295,7 @@ "defaultValue": null }, { - "name": "isBot", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -23656,7 +23312,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatIdOrdering", + "name": "_RepoOrdering", "ofType": null } }, @@ -23683,7 +23339,7 @@ "defaultValue": null }, { - "name": "timezoneLabel", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -23698,7 +23354,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatId", + "name": "Repo", "ofType": null } }, @@ -23706,15 +23362,15 @@ "deprecationReason": null }, { - "name": "team", - "description": "ChatTeam team Team", + "name": "chatTeam", + "description": "", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -23730,7 +23386,7 @@ "defaultValue": null }, { - "name": "description", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -23740,7 +23396,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -23750,7 +23406,27 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "domain", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "messageCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -23762,24 +23438,71 @@ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "ChatTeam", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preferences", - "description": "Return a chat team's preferences", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamPreference", - "ofType": null + "name": "team", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -23792,7 +23515,7 @@ }, { "kind": "ENUM", - "name": "ChatTeamState", + "name": "OrgInitializationState", "description": "", "fields": null, "inputFields": null, @@ -23814,172 +23537,165 @@ "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 - }, + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "description": "", + "fields": [ { - "name": "isOwner_asc", - "description": "Ascending sort for isOwner", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isOwner_desc", - "description": "Descending sort for isOwner", + "name": "installationId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isPrimaryOwner_asc", - "description": "Ascending sort for isPrimaryOwner", + "name": "permissions", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isPrimaryOwner_desc", - "description": "Descending sort for isPrimaryOwner", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAdmin_asc", - "description": "Ascending sort for isAdmin", + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAdmin_desc", - "description": "Descending sort for isAdmin", + "name": "ownerType", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_asc", - "description": "Ascending sort for isBot", + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_desc", - "description": "Descending sort for isBot", + "name": "avatarUrl", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel_asc", - "description": "Ascending sort for timezoneLabel", + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel_desc", - "description": "Descending sort for timezoneLabel", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TeamPreference", - "description": "A team's preferences as key/value pairs", - "fields": [ - { - "name": "name", - "description": "The name of the preference", + "name": "gitHubAppResourceProvider", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", + "name": "token", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppInstallationToken", "ofType": null }, "isDeprecated": false, @@ -23993,139 +23709,159 @@ }, { "kind": "OBJECT", - "name": "UserPreference", - "description": "A user's preferences as key/value pairs", + "name": "GitHubAppResourceProvider", + "description": "", "fields": [ { "name": "name", - "description": "The name of the preference", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", + "name": "url", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "description": "Ordering Enum for ChannelLink", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "providerId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "private", + "description": "private is this provider reachable on the public internet", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "apiUrl", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "gitUrl", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelLink", - "description": "ChannelLink-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "providerType", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of ChannelLink", + "name": "applicationId", + "description": "the id of the atomist github app as provided by github", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "ChannelLink channel ChatChannel", + "name": "applicationName", + "description": "the name of the atomist github app", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orgs", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -24135,70 +23871,68 @@ "defaultValue": null }, { - "name": "channelId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_OrgOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "isDefault", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "ChannelLink repo Repo", + "name": "gitHubAppInstallations", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", + "name": "installationId", "description": "", "type": { "kind": "SCALAR", @@ -24208,7 +23942,7 @@ "defaultValue": null }, { - "name": "name", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -24218,442 +23952,663 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppInstallationOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "repoId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "IssueState", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "open", + "name": "_typenames", "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closed", + "name": "_id", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted", + "name": "id", "description": "", - "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", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "team", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "authProviderId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number_asc", - "description": "Ascending sort for number", + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number_desc", - "description": "Descending sort for number", + "name": "webhooks", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title_asc", - "description": "Ascending sort for title", + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title_desc", - "description": "Descending sort for title", + "name": "updatedBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body_asc", - "description": "Ascending sort for body", + "name": "metadata", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body_desc", - "description": "Descending sort for body", + "name": "scope", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null }, { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INTERFACE", + "name": "NpmRegistryProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "NpmRegistryProvider", + "description": "", + "fields": [ { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_asc", - "description": "Ascending sort for action", + "name": "team", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action_desc", - "description": "Descending sort for action", + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", + "name": "updatedBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", + "name": "metadata", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", + "name": "url", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", + "name": "scope", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], - "possibleTypes": null + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null + } + ] }, { - "kind": "OBJECT", - "name": "Issue", - "description": "Issue-Node", - "fields": [ + "kind": "ENUM", + "name": "_GitHubAppInstallationOrdering", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "owner_asc", + "description": "Ascending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the url of the Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "owner_desc", + "description": "Descending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "ownerType_asc", + "description": "Ascending sort for ownerType", "isDeprecated": false, "deprecationReason": null }, { - "name": "number", - "description": "number of Issue", + "name": "ownerType_desc", + "description": "Descending sort for ownerType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubAppInstallationToken", + "description": "", + "fields": [ + { + "name": "secret", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Issue", + "name": "permissions", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubProvider", + "description": "GitHubProvider-Node", + "fields": [ { - "name": "title", - "description": "title of Issue", + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body", - "description": "body of Issue", + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of Issue", + "name": "url", + "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "IssueState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Issue", + "name": "providerId", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action", - "description": "action of Issue", + "name": "private", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Issue", + "name": "apiUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of Issue", + "name": "gitUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt", - "description": "closedAt of Issue", + "name": "providerType", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Issue repo Repo", + "name": "team", + "description": "", "args": [ { "name": "id", "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -24672,37 +24627,7 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -24712,7 +24637,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -24722,7 +24647,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -24737,175 +24662,282 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "Team", "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": "resolvingCommits", - "description": "Issue resolvingCommits Commit", - "args": [ - { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "openedBy", - "description": "Issue openedBy SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", + "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": "OBJECT", + "name": "Repo", + "description": "Repo-Node", + "fields": [ + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closedBy", - "description": "Issue closedBy SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "url", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SCMId", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowSquashMerge", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowMergeCommit", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repoId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultBranch", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -24913,7 +24945,7 @@ }, { "name": "labels", - "description": "Issue labels Label", + "description": "", "args": [ { "name": "id", @@ -24945,16 +24977,6 @@ }, "defaultValue": null }, - { - "name": "color", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -24988,6 +25010,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "color", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -25003,15 +25035,15 @@ "deprecationReason": null }, { - "name": "assignees", - "description": "Issue assignees SCMId", + "name": "channels", + "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -25026,6 +25058,56 @@ }, "defaultValue": null }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "normalizedName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isDefault", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "botInvitedSelf", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -25034,7 +25116,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -25061,11 +25143,11 @@ "defaultValue": null }, { - "name": "avatar", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -25076,7 +25158,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "ChatChannel", "ofType": null } }, @@ -25084,21 +25166,21 @@ "deprecationReason": null }, { - "name": "lastAssignedBy", - "description": "Issue lastAssignedBy SCMId", + "name": "org", + "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -25108,11 +25190,11 @@ "defaultValue": null }, { - "name": "avatar", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -25120,15 +25202,15 @@ ], "type": { "kind": "OBJECT", - "name": "SCMId", + "name": "Org", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", - "description": "Issue comments Comment", + "name": "issue", + "description": "", "args": [ { "name": "id", @@ -25141,17 +25223,17 @@ "defaultValue": null }, { - "name": "body", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -25161,7 +25243,21 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -25171,7 +25267,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -25181,17 +25277,17 @@ "defaultValue": null }, { - "name": "commentId", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "IssueState", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -25201,7 +25297,7 @@ "defaultValue": null }, { - "name": "path", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -25211,7 +25307,7 @@ "defaultValue": null }, { - "name": "position", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -25221,7 +25317,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -25238,7 +25334,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_IssueOrdering", "ofType": null } }, @@ -25265,11 +25361,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "closedAt", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -25280,181 +25376,16 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Issue", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "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": "OBJECT", - "name": "Commit", - "description": "Commit-Node", - "fields": [ - { - "name": "id", + "name": "issues", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Commit builds Build", "args": [ { "name": "id", @@ -25466,22 +25397,12 @@ }, "defaultValue": null }, - { - "name": "buildId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null @@ -25497,17 +25418,21 @@ "defaultValue": null }, { - "name": "status", + "name": "names", "description": "", "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "buildUrl", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -25517,7 +25442,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -25527,51 +25452,11 @@ "defaultValue": null }, { - "name": "trigger", + "name": "state", "description": "", "type": { "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "IssueState", "ofType": null }, "defaultValue": null @@ -25587,7 +25472,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -25597,7 +25482,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -25607,7 +25492,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -25624,7 +25509,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_IssueOrdering", "ofType": null } }, @@ -25651,7 +25536,7 @@ "defaultValue": null }, { - "name": "data", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -25666,34 +25551,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Build", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelines", - "description": "Pipelines associated with this commit if applicable", - "args": [ - { - "name": "pipelineId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pipeline", + "name": "Issue", "ofType": null } }, @@ -25701,8 +25559,8 @@ "deprecationReason": null }, { - "name": "repo", - "description": "Commit repo Repo", + "name": "pullRequest", + "description": "", "args": [ { "name": "id", @@ -25715,17 +25573,17 @@ "defaultValue": null }, { - "name": "owner", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -25735,37 +25593,31 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "names", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "repoId", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -25775,7 +25627,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -25785,40 +25637,17 @@ "defaultValue": null }, { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": "Commit author SCMId", - "args": [ - { - "name": "login", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -25828,7 +25657,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -25836,22 +25665,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "committer", - "description": "Commit committer SCMId", - "args": [ + }, { - "name": "login", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -25861,7 +25677,7 @@ "defaultValue": null }, { - "name": "name", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -25871,7 +25687,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -25879,32 +25695,9 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "name", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -25914,7 +25707,7 @@ "defaultValue": null }, { - "name": "description", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -25924,7 +25717,7 @@ "defaultValue": null }, { - "name": "ref", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -25941,7 +25734,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -25968,11 +25761,11 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -25983,7 +25776,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "PullRequest", "ofType": null } }, @@ -25991,8 +25784,8 @@ "deprecationReason": null }, { - "name": "resolves", - "description": "Commit resolves Issue", + "name": "pullRequests", + "description": "", "args": [ { "name": "id", @@ -26015,7 +25808,7 @@ "defaultValue": null }, { - "name": "name", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -26025,7 +25818,7 @@ "defaultValue": null }, { - "name": "title", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -26047,16 +25840,6 @@ { "name": "state", "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -26065,17 +25848,17 @@ "defaultValue": null }, { - "name": "action", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -26085,7 +25868,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -26095,41 +25878,27 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "title", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -26137,46 +25906,9 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -26186,7 +25918,7 @@ "defaultValue": null }, { - "name": "targetUrl", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -26196,7 +25928,7 @@ "defaultValue": null }, { - "name": "context", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -26213,7 +25945,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_StatusOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -26240,11 +25972,11 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -26255,7 +25987,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "PullRequest", "ofType": null } }, @@ -26264,20 +25996,10 @@ }, { "name": "pushes", - "description": "Commit pushes Push", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -26319,16 +26041,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "branch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -26344,8 +26056,8 @@ "deprecationReason": null }, { - "name": "pullRequests", - "description": "Commit pullRequests PullRequest", + "name": "branches", + "description": "Repo branches Branch", "args": [ { "name": "id", @@ -26357,26 +26069,6 @@ }, "defaultValue": null }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": "", @@ -26388,17 +26080,7 @@ "defaultValue": null }, { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -26408,7 +26090,7 @@ "defaultValue": null }, { - "name": "merged", + "name": "isRemote", "description": "", "type": { "kind": "SCALAR", @@ -26418,37 +26100,41 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BranchOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "baseBranchName", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "branchName", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "title", + "name": "remoteRepoHtmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -26456,90 +26142,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -26547,7 +26149,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "Branch", "ofType": null } }, @@ -26555,59 +26157,9 @@ "deprecationReason": null }, { - "name": "herokuApps", - "description": "Commit herokuApps HerokuApp", + "name": "links", + "description": "Repo links ChannelLink", "args": [ - { - "name": "app", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -26616,7 +26168,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_HerokuAppOrdering", + "name": "_ChannelLinkOrdering", "ofType": null } }, @@ -26643,11 +26195,11 @@ "defaultValue": null }, { - "name": "release", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -26658,140 +26210,183 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "HerokuApp", + "name": "ChannelLink", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "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": "apps", - "description": "Commit apps Application", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": 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": "Label", + "description": "Label-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": "Commit image DockerImage", + "name": "url", + "description": "the url of the Label", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "image", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "imageName", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -26801,30 +26396,7 @@ "defaultValue": null }, { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "images", - "description": "Commit images DockerImage", - "args": [ - { - "name": "image", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -26834,51 +26406,37 @@ "defaultValue": null }, { - "name": "imageName", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -26886,26 +26444,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "analysis", - "description": "", - "args": [ + }, { - "name": "name", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -26915,7 +26456,7 @@ "defaultValue": null }, { - "name": "type", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -26926,21 +26467,9 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "Repo", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -26953,109 +26482,15 @@ }, { "kind": "ENUM", - "name": "BuildStatus", - "description": "Enum for BuildStatus", + "name": "_ChatChannelOrdering", + "description": "Ordering Enum for ChatChannel", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "passed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "broken", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "started", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "canceled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queued", - "description": "", - "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": "ENUM", - "name": "_BuildOrdering", - "description": "Ordering Enum for Build", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, @@ -27077,30 +26512,6 @@ "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": "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", @@ -27113,54 +26524,6 @@ "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", @@ -27174,98 +26537,62 @@ "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", + "name": "normalizedName_asc", + "description": "Ascending sort for normalizedName", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "normalizedName_desc", + "description": "Descending sort for normalizedName", "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", + "name": "channelId_asc", + "description": "Ascending sort for channelId", "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", + "name": "channelId_desc", + "description": "Descending sort for channelId", "isDeprecated": false, "deprecationReason": null }, { - "name": "jobName_asc", - "description": "Ascending sort for jobName", + "name": "isDefault_asc", + "description": "Ascending sort for isDefault", "isDeprecated": false, "deprecationReason": null }, { - "name": "jobName_desc", - "description": "Descending sort for jobName", + "name": "isDefault_desc", + "description": "Descending sort for isDefault", "isDeprecated": false, "deprecationReason": null }, { - "name": "jobId_asc", - "description": "Ascending sort for jobId", + "name": "botInvitedSelf_asc", + "description": "Ascending sort for botInvitedSelf", "isDeprecated": false, "deprecationReason": null }, { - "name": "jobId_desc", - "description": "Descending sort for jobId", + "name": "botInvitedSelf_desc", + "description": "Descending sort for botInvitedSelf", "isDeprecated": false, "deprecationReason": null }, { - "name": "data_asc", - "description": "Ascending sort for data", + "name": "archived_asc", + "description": "Ascending sort for archived", "isDeprecated": false, "deprecationReason": null }, { - "name": "data_desc", - "description": "Descending sort for data", + "name": "archived_desc", + "description": "Descending sort for archived", "isDeprecated": false, "deprecationReason": null } @@ -27274,8 +26601,8 @@ }, { "kind": "OBJECT", - "name": "Build", - "description": "Build-Node", + "name": "ChatChannel", + "description": "ChatChannel-Node", "fields": [ { "name": "_id", @@ -27291,7 +26618,7 @@ }, { "name": "id", - "description": "id of Build", + "description": "id of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -27301,69 +26628,9 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "buildId", - "description": "buildId of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "number of Build", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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", + "description": "name of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -27373,57 +26640,9 @@ "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", + "description": "provider of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -27434,8 +26653,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Build", + "name": "normalizedName", + "description": "normalizedName of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -27446,8 +26665,8 @@ "deprecationReason": null }, { - "name": "workflowId", - "description": "workflowId of Build", + "name": "channelId", + "description": "channelId of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -27458,44 +26677,44 @@ "deprecationReason": null }, { - "name": "jobName", - "description": "jobName of Build", + "name": "isDefault", + "description": "isDefault of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "jobId", - "description": "jobId of Build", + "name": "botInvitedSelf", + "description": "botInvitedSelf of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "data", - "description": "data of Build", + "name": "archived", + "description": "archived of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Build repo Repo", + "name": "createdBy", + "description": "ChatChannel createdBy ChatId", "args": [ { "name": "id", @@ -27508,7 +26727,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -27518,7 +26737,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -27528,37 +26747,27 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", @@ -27568,7 +26777,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -27578,7 +26787,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -27586,32 +26795,9 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "timestamp", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -27621,7 +26807,7 @@ "defaultValue": null }, { - "name": "branch", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -27633,15 +26819,15 @@ ], "type": { "kind": "OBJECT", - "name": "Push", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequest", - "description": "Build pullRequest PullRequest", + "name": "repos", + "description": "ChatChannel repos Repo", "args": [ { "name": "id", @@ -27654,17 +26840,7 @@ "defaultValue": null }, { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -27684,27 +26860,17 @@ "defaultValue": null }, { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "merged", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", @@ -27714,17 +26880,17 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "baseBranchName", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -27734,7 +26900,7 @@ "defaultValue": null }, { - "name": "branchName", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -27744,37 +26910,41 @@ "defaultValue": null }, { - "name": "title", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_RepoOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "createdAt", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -27782,39 +26952,84 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "links", + "description": "ChatChannel links ChannelLink", + "args": [ + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChannelLinkOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mergeStatus", + "name": "offset", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChannelLink", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tag", - "description": "Build tag Tag", + "name": "members", + "description": "ChatChannel members ChatId", "args": [ { "name": "id", @@ -27827,7 +27042,7 @@ "defaultValue": null }, { - "name": "name", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -27837,7 +27052,7 @@ "defaultValue": null }, { - "name": "description", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -27847,7 +27062,7 @@ "defaultValue": null }, { - "name": "ref", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -27857,7 +27072,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -27865,22 +27080,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Tag", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Build commit Commit", - "args": [ + }, { - "name": "sha", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", @@ -27890,7 +27092,7 @@ "defaultValue": null }, { - "name": "message", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -27900,7 +27102,61 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "isAdmin", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isBot", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -27911,16 +27167,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "workflow", - "description": "Build workflow Workflow", + "name": "team", + "description": "ChatChannel team ChatTeam", "args": [ { "name": "id", @@ -27943,7 +27203,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -27953,7 +27213,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -27963,7 +27223,27 @@ "defaultValue": null }, { - "name": "config", + "name": "domain", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "messageCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -27975,7 +27255,7 @@ ], "type": { "kind": "OBJECT", - "name": "Workflow", + "name": "ChatTeam", "ofType": null }, "isDeprecated": false, @@ -27989,8 +27269,8 @@ }, { "kind": "OBJECT", - "name": "Push", - "description": "Push-Node", + "name": "ChatId", + "description": "ChatId-Node", "fields": [ { "name": "_id", @@ -28006,7 +27286,7 @@ }, { "name": "id", - "description": "id of Push", + "description": "id of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -28017,8 +27297,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Push", + "name": "screenName", + "description": "screenName of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -28029,8 +27309,8 @@ "deprecationReason": null }, { - "name": "branch", - "description": "branch of Push", + "name": "userId", + "description": "userId of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -28041,33 +27321,105 @@ "deprecationReason": null }, { - "name": "toBranch", - "description": "", + "name": "provider", + "description": "provider of ChatId", "args": [], "type": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "after", - "description": "Push after Commit", + "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": "sha", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -28077,30 +27429,7 @@ "defaultValue": null }, { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "before", - "description": "Push before Commit", - "args": [ - { - "name": "sha", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -28110,7 +27439,7 @@ "defaultValue": null }, { - "name": "message", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -28120,7 +27449,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -28128,36 +27457,23 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "Push commits Commit", - "args": [ + }, { - "name": "sha", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -28170,7 +27486,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -28197,11 +27513,11 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -28212,7 +27528,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "ChatChannel", "ofType": null } }, @@ -28220,25 +27536,42 @@ "deprecationReason": null }, { - "name": "repo", - "description": "Push repo Repo", + "name": "emails", + "description": "ChatId emails Email", "args": [ { - "name": "id", + "name": "address", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "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": "owner", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -28254,37 +27587,27 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -28294,17 +27617,17 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -28316,15 +27639,15 @@ ], "type": { "kind": "OBJECT", - "name": "Repo", + "name": "ChatTeam", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "builds", - "description": "Push builds Build", + "name": "channelsCreated", + "description": "ChatId channelsCreated ChatChannel", "args": [ { "name": "id", @@ -28336,26 +27659,6 @@ }, "defaultValue": null }, - { - "name": "buildId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": "", @@ -28367,17 +27670,7 @@ "defaultValue": null }, { - "name": "status", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -28387,7 +27680,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -28397,17 +27690,7 @@ "defaultValue": null }, { - "name": "trigger", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -28417,47 +27700,64 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "finishedAt", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "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": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "workflowId", + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -28467,7 +27767,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -28477,7 +27777,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -28485,43 +27785,93 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "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", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Email", + "description": "Email-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "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": "first", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -28532,377 +27882,398 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } + "kind": "OBJECT", + "name": "SCMId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pipelines", - "description": "Pipelines associated with this Push", + "name": "gitHubId", + "description": "Email gitHubId GitHubId", "args": [ { - "name": "pipelineId", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pipeline", - "ofType": null - } + "kind": "OBJECT", + "name": "GitHubId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goals", - "description": null, + "name": "chatId", + "description": "Email chatId ChatId", "args": [ { - "name": "approvalRequired", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "branch", - "description": null, + "name": "screenName", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "userId", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "provider", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "environment", - "description": null, + "name": "isAtomistBot", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "error", - "description": null, + "name": "isOwner", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "isPrimaryOwner", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalUrl", - "description": null, + "name": "isAdmin", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSet", - "description": null, + "name": "isBot", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSetId", - "description": null, + "name": "timezoneLabel", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "person", + "description": "Email person Person", + "args": [ { - "name": "name", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "parameters", - "description": null, + "name": "forename", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "phase", - "description": null, + "name": "surname", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "preApprovalRequired", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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": "GitHubId", + "description": "GitHubId-Node", + "fields": [ + { + "name": "name", + "description": "name of GitHubId", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "", + "args": [ { - "name": "registration", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emails", + "description": "GitHubId emails Email", + "args": [ { - "name": "retryFeasible", - "description": null, + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "_EmailOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "first", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "signature", - "description": null, + "name": "offset", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "address", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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": "ts", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "uniqueName", - "description": null, + "name": "forename", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "url", - "description": null, + "name": "surname", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "version", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_typenames", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoal", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -28910,90 +28281,404 @@ "deprecationReason": null }, { - "name": "goalSets", - "description": null, + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], + "enumValues": 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": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatTeam", + "description": "ChatTeam-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "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": "chatTeamId", + "description": "id of the ChatTeam as provided by the ChatTeam, not the atomist identifier of this node", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": "tenantId", + "description": "This ChatTeams tenantId if available for this provider", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "serviceUrl", + "description": "This is the url for accessing the API on this 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": "state", + "description": "Determines whether or not we have finished ingesting the initial set of ChatChannels and ChatIds", + "args": [], + "type": { + "kind": "ENUM", + "name": "ChatTeamState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initialChatChannelCount", + "description": "The number of ChatChannels to be loaded during initialization.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": "The icon for the ChatTeam. May be an external URL.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkedAt", + "description": "ISO8601 timestamp updated when this ChatTeam was linked to the Team (workspace) node", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orgs", + "description": "ChatTeam orgs Org", "args": [ { - "name": "branch", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "goalSet", - "description": null, + "name": "owner", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSetId", - "description": null, + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_OrgOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "first", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "offset", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "ownerType", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "OwnerType", + "ofType": null }, "defaultValue": null } @@ -29003,7 +28688,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSet", + "name": "Org", "ofType": null } }, @@ -29011,348 +28696,120 @@ "deprecationReason": null }, { - "name": "goalsDisplayState", - "description": null, + "name": "channels", + "description": "ChatTeam channels ChatChannel", "args": [ { - "name": "branch", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "format", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "provider", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "normalizedName", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoalDisplay", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "compliance", - "description": null, - "args": [ - { - "name": "_branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_repo", - "description": null, + "name": "channelId", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_sha", - "description": null, + "name": "isDefault", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "botInvitedSelf", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "PolicyCompliaceState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyCompliance", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "outputs", - "description": null, - "args": [ - { - "name": "_branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "classifier", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "correlationId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orgParentId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "_ChatChannelOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "repoParentId", - "description": null, + "name": "first", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "offset", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "uri", - "description": null, + "name": "archived", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null } @@ -29362,111 +28819,16 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SkillOutput", + "name": "ChatChannel", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Branch", - "description": "Branch-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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", + "name": "members", + "description": "ChatTeam members ChatId", "args": [ { "name": "id", @@ -29479,7 +28841,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -29489,7 +28851,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -29499,37 +28861,37 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -29539,7 +28901,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -29549,7 +28911,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -29557,42 +28919,43 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Branch commit Commit", - "args": [ + }, { - "name": "sha", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -29603,40 +28966,24 @@ } ], "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequests", - "description": "Branch pullRequests PullRequest", + "name": "team", + "description": "ChatTeam team Team", "args": [ { "name": "id", "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -29655,17 +29002,7 @@ "defaultValue": null }, { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -29675,17 +29012,7 @@ "defaultValue": null }, { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -29695,7 +29022,7 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -29703,118 +29030,26 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "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", "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "TeamPreference", "ofType": null } }, @@ -29829,8 +29064,31 @@ }, { "kind": "ENUM", - "name": "_PullRequestOrdering", - "description": "Ordering Enum for PullRequest", + "name": "ChatTeamState", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "initializing", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initialized", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_ChatIdOrdering", + "description": "Ordering Enum for ChatId", "fields": null, "inputFields": null, "interfaces": null, @@ -29860,211 +29118,110 @@ "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", + "name": "screenName_asc", + "description": "Ascending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "baseBranchName_desc", - "description": "Descending sort for baseBranchName", + "name": "screenName_desc", + "description": "Descending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "branchName_asc", - "description": "Ascending sort for branchName", + "name": "userId_asc", + "description": "Ascending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "branchName_desc", - "description": "Descending sort for branchName", + "name": "userId_desc", + "description": "Descending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_asc", - "description": "Ascending sort for title", + "name": "provider_asc", + "description": "Ascending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_desc", - "description": "Descending sort for title", + "name": "provider_desc", + "description": "Descending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "isAtomistBot_asc", + "description": "Ascending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", + "name": "isAtomistBot_desc", + "description": "Descending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", + "name": "isOwner_asc", + "description": "Ascending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", + "name": "isOwner_desc", + "description": "Descending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", + "name": "isPrimaryOwner_asc", + "description": "Ascending sort for isPrimaryOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", + "name": "isPrimaryOwner_desc", + "description": "Descending sort for isPrimaryOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "mergedAt_asc", - "description": "Ascending sort for mergedAt", + "name": "isAdmin_asc", + "description": "Ascending sort for isAdmin", "isDeprecated": false, "deprecationReason": null }, { - "name": "mergedAt_desc", - "description": "Descending sort for mergedAt", + "name": "isAdmin_desc", + "description": "Descending sort for isAdmin", "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeStatus_asc", - "description": "Ascending sort for mergeStatus", + "name": "isBot_asc", + "description": "Ascending sort for isBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeStatus_desc", - "description": "Descending sort for mergeStatus", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "MergeStatus", - "description": "Enum for MergeStatus", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "can_be_merged", - "description": "Value for can_be_merged", + "name": "isBot_desc", + "description": "Descending sort for isBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "unchecked", - "description": "Value for unchecked", + "name": "timezoneLabel_asc", + "description": "Ascending sort for timezoneLabel", "isDeprecated": false, "deprecationReason": null }, { - "name": "cannot_be_merged", - "description": "Value for cannot_be_merged", + "name": "timezoneLabel_desc", + "description": "Descending sort for timezoneLabel", "isDeprecated": false, "deprecationReason": null } @@ -30073,84 +29230,12 @@ }, { "kind": "OBJECT", - "name": "PullRequest", - "description": "PullRequest-Node", + "name": "TeamPreference", + "description": "A team's preferences as key/value pairs", "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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", + "description": "The name of the preference", "args": [], "type": { "kind": "SCALAR", @@ -30161,8 +29246,8 @@ "deprecationReason": null }, { - "name": "state", - "description": "state of PullRequest", + "name": "value", + "description": "The value of the preference", "args": [], "type": { "kind": "SCALAR", @@ -30171,22 +29256,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UserPreference", + "description": "A user's preferences as key/value pairs", + "fields": [ { - "name": "timestamp", - "description": "timestamp of PullRequest", + "name": "name", + "description": "The name of the preference", "args": [], "type": { "kind": "SCALAR", @@ -30197,8 +29281,8 @@ "deprecationReason": null }, { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", + "name": "value", + "description": "The value of the preference", "args": [], "type": { "kind": "SCALAR", @@ -30207,106 +29291,80 @@ }, "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": "branchName", - "description": "branchName of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": "title of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChannelLink", + "description": "ChannelLink-Node", + "fields": [ { - "name": "closedAt", - "description": "closedAt of PullRequest", + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergedAt", - "description": "mergedAt of PullRequest", + "name": "id", + "description": "id of ChannelLink", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeStatus", - "description": "mergeStatus of PullRequest", - "args": [], - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": "action of PullRequest", - "args": [], - "type": { - "kind": "ENUM", - "name": "PullRequestAction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "PullRequest repo Repo", + "name": "channel", + "description": "ChannelLink channel ChatChannel", "args": [ { "name": "id", @@ -30319,7 +29377,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -30329,7 +29387,7 @@ "defaultValue": null }, { - "name": "name", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -30339,27 +29397,27 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", @@ -30369,31 +29427,21 @@ "defaultValue": null }, { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -30401,28 +29449,28 @@ ], "type": { "kind": "OBJECT", - "name": "Repo", + "name": "ChatChannel", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "head", - "description": "PullRequest head Commit", + "name": "repo", + "description": "ChannelLink repo Repo", "args": [ { - "name": "sha", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -30432,7 +29480,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -30440,65 +29488,39 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "base", - "description": "PullRequest base Commit", - "args": [ + }, { - "name": "sha", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergeCommit", - "description": "PullRequest mergeCommit Commit", - "args": [ + }, { - "name": "sha", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -30508,7 +29530,7 @@ "defaultValue": null }, { - "name": "message", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -30518,7 +29540,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -30530,18 +29552,379 @@ ], "type": { "kind": "OBJECT", - "name": "Commit", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "IssueState", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "open", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "author", - "description": "PullRequest author SCMId", + "name": "closed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleted", + "description": "", + "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": "Issue", + "description": "", + "fields": [ + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "body", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "closedAt", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "Issue repo Repo", "args": [ { - "name": "login", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -30561,73 +29944,37 @@ "defaultValue": null }, { - "name": "avatar", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merger", - "description": "PullRequest merger SCMId", - "args": [ + }, { - "name": "login", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignees", - "description": "PullRequest assignees SCMId", - "args": [ - { - "name": "login", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -30637,7 +29984,7 @@ "defaultValue": null }, { - "name": "name", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -30647,41 +29994,7 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -30692,11 +30005,11 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "Repo", "ofType": null } }, @@ -30704,8 +30017,8 @@ "deprecationReason": null }, { - "name": "commits", - "description": "PullRequest commits Commit", + "name": "resolvingCommits", + "description": "Issue resolvingCommits Commit", "args": [ { "name": "sha", @@ -30727,6 +30040,16 @@ }, "defaultValue": null }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -30760,16 +30083,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -30785,51 +30098,11 @@ "deprecationReason": null }, { - "name": "branch", - "description": "PullRequest branch Branch", + "name": "openedBy", + "description": "Issue openedBy SCMId", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -30837,29 +30110,6 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { "name": "name", @@ -30872,27 +30122,7 @@ "defaultValue": null }, { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -30904,28 +30134,18 @@ ], "type": { "kind": "OBJECT", - "name": "Branch", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "destinationBranch", - "description": "PullRequest destinationBranch Branch", + "name": "closedBy", + "description": "Issue closedBy SCMId", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -30935,7 +30155,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -30945,17 +30165,7 @@ "defaultValue": null }, { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -30967,7 +30177,7 @@ ], "type": { "kind": "OBJECT", - "name": "Branch", + "name": "SCMId", "ofType": null }, "isDeprecated": false, @@ -30975,7 +30185,7 @@ }, { "name": "labels", - "description": "PullRequest labels Label", + "description": "Issue labels Label", "args": [ { "name": "id", @@ -31007,40 +30217,6 @@ }, "defaultValue": null }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "color", "description": "", @@ -31050,83 +30226,6 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reviewId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, { "name": "orderBy", @@ -31136,7 +30235,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ReviewOrdering", + "name": "_LabelOrdering", "ofType": null } }, @@ -31161,16 +30260,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "htmlUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -31178,7 +30267,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Review", + "name": "Label", "ofType": null } }, @@ -31186,8 +30275,8 @@ "deprecationReason": null }, { - "name": "reviewers", - "description": "PullRequest reviewers SCMId", + "name": "assignees", + "description": "Issue assignees SCMId", "args": [ { "name": "login", @@ -31268,7 +30357,7 @@ }, { "name": "lastAssignedBy", - "description": "PullRequest lastAssignedBy SCMId", + "description": "Issue lastAssignedBy SCMId", "args": [ { "name": "login", @@ -31311,7 +30400,7 @@ }, { "name": "comments", - "description": "PullRequest comments Comment", + "description": "Issue comments Comment", "args": [ { "name": "id", @@ -31469,23 +30558,155 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "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": "builds", - "description": "PullRequest builds Build", + "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": "OBJECT", + "name": "Commit", + "description": "Commit-Node", + "fields": [ + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -31493,12 +30714,116 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", + } + ], + "type": { + "kind": "OBJECT", + "name": "Email", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "checkSuites", + "description": "", + "args": [ + { + "name": "appSlug", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CheckSuiteOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "appId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "builds", + "description": "Commit builds Build", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", "name": "Int", "ofType": null }, @@ -31690,444 +31015,344 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PullRequestAction", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "assigned", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unassigned", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review_requested", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "review_request_removed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labeled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unlabeled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "opened", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "edited", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reopened", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "synchronize", - "description": "", + "name": "pipelines", + "description": "Pipelines associated with this commit if applicable", + "args": [ + { + "name": "pipelineId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "submitted", - "description": "", + "name": "repo", + "description": "Commit repo Repo", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ready_for_review", - "description": "", - "isDeprecated": false, - "deprecationReason": 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", + "name": "author", + "description": "Commit author SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "committer", + "description": "Commit committer SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "tags", + "description": "Commit tags Tag", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ref", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_TagOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + } + }, "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 - }, - { - "name": "avatar_asc", - "description": "Ascending sort for avatar", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avatar_desc", - "description": "Descending sort for avatar", - "isDeprecated": false, - "deprecationReason": 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": "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": "OBJECT", - "name": "Review", - "description": "Review-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the Review", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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", + "name": "resolves", + "description": "Commit resolves Issue", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null @@ -32143,41 +31368,47 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "title", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "avatar", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -32185,26 +31416,9 @@ "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", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -32214,7 +31428,7 @@ "defaultValue": null }, { - "name": "message", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -32224,7 +31438,41 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_IssueOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -32235,16 +31483,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", - "description": "Review comments Comment", + "name": "statuses", + "description": "Commit statuses Status", "args": [ { "name": "id", @@ -32257,17 +31509,17 @@ "defaultValue": null }, { - "name": "body", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StatusState", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -32277,7 +31529,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "targetUrl", "description": "", "type": { "kind": "SCALAR", @@ -32287,7 +31539,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "context", "description": "", "type": { "kind": "SCALAR", @@ -32297,27 +31549,41 @@ "defaultValue": null }, { - "name": "commentId", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_StatusOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -32325,19 +31591,36 @@ "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": "position", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "htmlUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -32354,7 +31637,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_PushOrdering", "ofType": null } }, @@ -32381,11 +31664,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "branch", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -32396,7 +31679,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Push", "ofType": null } }, @@ -32404,8 +31687,8 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "Review pullRequest PullRequest", + "name": "pullRequests", + "description": "Commit pullRequests PullRequest", "args": [ { "name": "id", @@ -32558,411 +31841,68 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "orderBy", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PullRequestOrdering", + "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": "_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": "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": "OBJECT", - "name": "Comment", - "description": "Comment-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the url of the Comment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "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": "title", + "name": "app", "description": "", "type": { "kind": "SCALAR", @@ -32972,7 +31912,7 @@ "defaultValue": null }, { - "name": "body", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -32982,17 +31922,17 @@ "defaultValue": null }, { - "name": "state", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "IssueState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "user", "description": "", "type": { "kind": "SCALAR", @@ -33002,7 +31942,7 @@ "defaultValue": null }, { - "name": "action", + "name": "appId", "description": "", "type": { "kind": "SCALAR", @@ -33012,27 +31952,41 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_HerokuAppOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "release", "description": "", "type": { "kind": "SCALAR", @@ -33043,16 +31997,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "HerokuApp", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "review", - "description": "Comment review Review", + "name": "apps", + "description": "Commit apps Application", "args": [ { "name": "id", @@ -33065,7 +32023,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -33075,7 +32033,7 @@ "defaultValue": null }, { - "name": "reviewId", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -33085,7 +32043,7 @@ "defaultValue": null }, { - "name": "body", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -33095,27 +32053,51 @@ "defaultValue": null }, { - "name": "state", + "name": "domain", "description": "", "type": { - "kind": "ENUM", - "name": "ReviewState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "submittedAt", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ApplicationOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "htmlUrl", + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -33126,83 +32108,37 @@ } ], "type": { - "kind": "OBJECT", - "name": "Review", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Application", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequest", - "description": "Comment pullRequest PullRequest", + "name": "image", + "description": "Commit image DockerImage", "args": [ { - "name": "id", + "name": "image", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -33216,19 +32152,22 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "images", + "description": "Commit images DockerImage", + "args": [ { - "name": "branchName", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -33238,7 +32177,7 @@ "defaultValue": null }, { - "name": "title", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -33248,37 +32187,41 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_DockerImageOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "updatedAt", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mergedAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -33286,40 +32229,40 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "by", - "description": "Comment by SCMId", + "name": "dockerRegistryImages", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerRegistryImage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analysis", + "description": "", "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": "", @@ -33331,7 +32274,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "type", "description": "", "type": { "kind": "SCALAR", @@ -33342,9 +32285,21 @@ } ], "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -33355,62 +32310,145 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "ENUM", + "name": "_CheckSuiteOrdering", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "timestamp_asc", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_desc", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "Pipeline", - "description": "Pipeline-Node", + "name": "CheckSuite", + "description": "", "fields": [ + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "_id", - "description": "internal node id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "checkSuiteId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headBranch", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "status", - "description": "Pipeline status", + "name": "appSlug", + "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "PipelineStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "Pipieline provider", + "name": "appId", + "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "PipelineProvider", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pipelineId", - "description": "Source id of the pipeline from the provider", + "name": "url", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "The time this Pipeline was created", + "name": "checkRunsUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -33421,44 +32459,64 @@ "deprecationReason": null }, { - "name": "finishedAt", - "description": "The time this Pipeline finished. Empty if not finished.", + "name": "action", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CheckSuiteAction", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "The repo this pipeline ran against", + "name": "timestamp", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "description": "The push that triggered this pipeline if applicable", + "name": "conclusion", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Push", + "kind": "ENUM", + "name": "CheckSuiteConclusion", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "status", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CheckSuiteStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "commit", - "description": "The commit associated with this pipeline if applicable", + "description": "", "args": [], "type": { "kind": "OBJECT", @@ -33469,16 +32527,48 @@ "deprecationReason": null }, { - "name": "stages", - "description": "The set of stages associated with this pipeline", + "name": "checkRuns", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Stage", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pullRequests", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } + } } }, "isDeprecated": false, @@ -33492,24 +32582,41 @@ }, { "kind": "ENUM", - "name": "PipelineStatus", - "description": "Enum for PipelineStatus", + "name": "CheckSuiteAction", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "running", + "name": "completed", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "pending", + "name": "requested", "description": "", "isDeprecated": false, "deprecationReason": null }, + { + "name": "rerequested", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CheckSuiteConclusion", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { "name": "success", "description": "", @@ -33517,25 +32624,37 @@ "deprecationReason": null }, { - "name": "failed", + "name": "failure", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "canceled", + "name": "neutral", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", + "name": "cancelled", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "manual", + "name": "timed_out", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "action_required", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stale", "description": "", "isDeprecated": false, "deprecationReason": null @@ -33545,15 +32664,33 @@ }, { "kind": "ENUM", - "name": "PipelineProvider", - "description": "Enum for the PipelineProviders", + "name": "CheckSuiteStatus", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "gitlab_ci", - "description": "Gitlab CI Pipeline", + "name": "requested", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in_progress", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queued", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -33562,111 +32699,152 @@ }, { "kind": "OBJECT", - "name": "Stage", - "description": "Stage-Node", + "name": "CheckRun", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "The name of this stage", + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pipeline", - "description": "The pipeline that this stage belongs to", + "name": "checkRunId", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Pipeline", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "jobs", - "description": "The list of jobs associated with this stage", + "name": "action", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Job", + "kind": "ENUM", + "name": "CheckRunAction", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Job", - "description": "Job-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "url", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "when", - "description": "When this job gets triggered", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "htmlUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "manual", - "description": "Is this job triggered manually?", + "name": "detailsUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "conclusion", + "description": "", + "args": [], + "type": { + "kind": "ENUM", + "name": "CheckRunConclusion", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "The name of this job", + "name": "startedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -33677,20 +32855,36 @@ "deprecationReason": null }, { - "name": "jobId", - "description": "The source id of this job. The ID assigned to it by its provider", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "startedAt", - "description": "When this job started as an ISO8601 string. Blank until started.", + "name": "outputTitle", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -33701,8 +32895,8 @@ "deprecationReason": null }, { - "name": "finishedAt", - "description": "When this job finished as an ISO8601 string. Blank until finished.", + "name": "outputAnnotationsUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -33714,19 +32908,23 @@ }, { "name": "status", - "description": "The status of this job. Blank until started.", + "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "JobStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CheckRunStatus", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "runner", - "description": "The runner for this job. Blank until started.", + "name": "requestedActionIdentifier", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -33737,13 +32935,17 @@ "deprecationReason": null }, { - "name": "stage", - "description": "The stage this job is associated with", + "name": "checkSuite", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Stage", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CheckSuite", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -33756,8 +32958,8 @@ }, { "kind": "ENUM", - "name": "JobStatus", - "description": "Enum for JobStatus", + "name": "CheckRunAction", + "description": "", "fields": null, "inputFields": null, "interfaces": null, @@ -33769,43 +32971,19 @@ "deprecationReason": null }, { - "name": "pending", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "canceled", + "name": "completed", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", + "name": "rerequested", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "manual", + "name": "requested_action", "description": "", "isDeprecated": false, "deprecationReason": null @@ -33815,81 +32993,86 @@ }, { "kind": "ENUM", - "name": "SdmGoalState", - "description": null, + "name": "CheckRunConclusion", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { "name": "success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pre_approved", - "description": null, + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "requested", - "description": null, + "name": "failure", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "waiting_for_pre_approval", - "description": null, + "name": "neutral", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "approved", - "description": null, + "name": "cancelled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "waiting_for_approval", - "description": null, + "name": "skipped", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "failure", - "description": null, + "name": "timed_out", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "stopped", - "description": null, + "name": "action_required", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "planned", - "description": null, + "name": "stale", + "description": "", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CheckRunStatus", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "in_process", - "description": null, + "name": "queued", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", - "description": null, + "name": "in_progress", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "canceled", - "description": null, + "name": "completed", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -33898,60 +33081,60 @@ }, { "kind": "OBJECT", - "name": "SdmGoal", - "description": null, + "name": "PullRequest", + "description": "PullRequest-Node", "fields": [ { - "name": "approval", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "OBJECT", - "name": "SdmProvenance", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "approvalRequired", - "description": null, + "name": "url", + "description": "the URL of the PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", - "description": null, + "name": "id", + "description": "id of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "data", - "description": null, + "name": "number", + "description": "number of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "prId", + "description": "prId of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -33962,20 +33145,20 @@ "deprecationReason": null }, { - "name": "descriptions", - "description": null, + "name": "name", + "description": "name of PullRequest", "args": [], "type": { - "kind": "OBJECT", - "name": "SdmGoalDescriptions", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": null, + "name": "body", + "description": "body of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -33986,8 +33169,8 @@ "deprecationReason": null }, { - "name": "error", - "description": null, + "name": "state", + "description": "state of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -33998,20 +33181,20 @@ "deprecationReason": null }, { - "name": "externalKey", - "description": null, + "name": "merged", + "description": "merged of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "externalUrl", - "description": null, + "name": "timestamp", + "description": "timestamp of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34022,79 +33205,20 @@ "deprecationReason": null }, { - "name": "externalUrls", - "description": null, + "name": "baseBranchName", + "description": "baseBranchName of PullRequest", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmExternalUrl", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fulfillment", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "method", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "registration", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmGoalFulfillment", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSet", - "description": null, + "name": "branchName", + "description": "branchName of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34105,8 +33229,8 @@ "deprecationReason": null }, { - "name": "goalSetId", - "description": null, + "name": "title", + "description": "title of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34117,8 +33241,8 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "createdAt", + "description": "createdAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34129,8 +33253,8 @@ "deprecationReason": null }, { - "name": "parameters", - "description": null, + "name": "updatedAt", + "description": "updatedAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34141,8 +33265,8 @@ "deprecationReason": null }, { - "name": "phase", - "description": null, + "name": "closedAt", + "description": "closedAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -34153,912 +33277,1647 @@ "deprecationReason": null }, { - "name": "preApproval", - "description": null, + "name": "mergedAt", + "description": "mergedAt of PullRequest", "args": [], "type": { - "kind": "OBJECT", - "name": "SdmProvenance", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preApprovalRequired", - "description": null, + "name": "mergeStatus", + "description": "mergeStatus of PullRequest", "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preConditions", - "description": null, + "name": "action", + "description": "action of PullRequest", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmCondition", - "ofType": null - } + "kind": "ENUM", + "name": "PullRequestAction", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provenance", - "description": null, + "name": "repo", + "description": "PullRequest repo Repo", "args": [ { - "name": "registration", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": null, - "args": [ + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", - "description": null, + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "allowRebaseMerge", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "allowSquashMerge", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retryFeasible", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha", - "description": null, - "args": [], + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "signature", - "description": null, - "args": [], + "name": "head", + "description": "PullRequest head Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], + "name": "base", + "description": "PullRequest base Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], + "name": "mergeCommit", + "description": "PullRequest mergeCommit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "uniqueName", - "description": null, - "args": [], + "name": "author", + "description": "PullRequest author SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": null, - "args": [], + "name": "merger", + "description": "PullRequest merger SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, - "args": [], + "name": "assignees", + "description": "PullRequest assignees SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SCMIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmGoal", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmProvenance", - "description": null, - "fields": [ - { - "name": "channelId", - "description": null, - "args": [], + "name": "commits", + "description": "PullRequest commits Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "correlationId", - "description": null, - "args": [], + "name": "branch", + "description": "PullRequest branch Branch", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isRemote", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "remoteRepoHtmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ts", - "description": null, - "args": [], + "name": "sourceBranch", + "description": "PullRequest sourceBranch Branch", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isRemote", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "remoteRepoHtmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", - "description": null, - "args": [], + "name": "destinationBranch", + "description": "PullRequest destinationBranch Branch", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isRemote", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "remoteRepoHtmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalDescriptions", - "description": null, - "fields": [ - { - "name": "canceled", - "description": null, - "args": [], + "name": "labels", + "description": "PullRequest labels Label", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "default", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_LabelOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Label", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "completed", - "description": null, - "args": [], + "name": "reviews", + "description": "PullRequest reviews Review", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reviewId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submittedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ReviewOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "htmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "failed", - "description": null, - "args": [], + "name": "reviewers", + "description": "PullRequest reviewers SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SCMIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inProcess", - "description": null, - "args": [], + "name": "lastAssignedBy", + "description": "PullRequest lastAssignedBy SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "planned", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requested", - "description": null, - "args": [], + "name": "comments", + "description": "PullRequest comments Comment", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "htmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommentOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentType", + "description": "", + "type": { + "kind": "ENUM", + "name": "CommentCommentType", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", - "description": null, - "args": [], + "name": "builds", + "description": "PullRequest builds Build", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildTrigger", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pullRequestNumber", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "finishedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BuildOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "MergeStatus", + "description": "Enum for MergeStatus", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "stopped", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "can_be_merged", + "description": "Value for can_be_merged", "isDeprecated": false, "deprecationReason": null }, { - "name": "waitingForApproval", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unchecked", + "description": "Value for unchecked", "isDeprecated": false, "deprecationReason": null }, { - "name": "waitingForPreApproval", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "cannot_be_merged", + "description": "Value for cannot_be_merged", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmExternalUrl", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "PullRequestAction", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "assigned", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "created", + "description": "", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalFulfillment", - "description": null, - "fields": [ + }, { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unassigned", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "review_requested", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmCondition", - "description": null, - "fields": [ - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "review_request_removed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "labeled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "uniqueName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unlabeled", + "description": "", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmRepository", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "opened", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "edited", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "closed", + "description": "", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalSet", - "description": null, - "fields": [ + }, { - "name": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "reopened", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSet", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "synchronize", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "submitted", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "goals", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoalName", - "ofType": null - } - }, + "name": "ready_for_review", + "description": "", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_SCMIdOrdering", + "description": "Ordering Enum for SCMId", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "provenance", - "description": null, - "args": [ - { - "name": "registration", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmRepository", - "ofType": null - }, + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoalSetTag", - "ofType": null - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "avatar_asc", + "description": "Ascending sort for avatar", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmGoalSet", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "avatar_desc", + "description": "Descending sort for avatar", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SdmGoalName", - "description": null, + "name": "Branch", + "description": "Branch-Node", "fields": [ { - "name": "name", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "uniqueName", - "description": null, + "name": "url", + "description": "the URL of the Branch", "args": [], "type": { "kind": "SCALAR", @@ -35067,33 +34926,22 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalSetTag", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "id", + "description": "id of Branch", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "name", + "description": "name of Branch", "args": [], "type": { "kind": "SCALAR", @@ -35102,67 +34950,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "compact", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "full", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "show_current", - "description": null, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "show_all", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalDisplay", - "description": null, - "fields": [ - { - "name": "branch", - "description": null, + "name": "timestamp", + "description": "timestamp of Branch", "args": [], "type": { "kind": "SCALAR", @@ -35173,24 +34964,24 @@ "deprecationReason": null }, { - "name": "format", - "description": null, + "name": "isRemote", + "description": "isRemote of Branch", "args": [], "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "description": null, + "name": "remoteRepoHtmlUrl", + "description": "remoteRepoHtmlUrl of Branch", "args": [], "type": { - "kind": "OBJECT", - "name": "Push", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -35198,60 +34989,357 @@ }, { "name": "repo", - "description": null, - "args": [], + "description": "Branch repo Repo", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", - "name": "SdmRepository", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ts", - "description": null, - "args": [], + "name": "commit", + "description": "Branch commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmGoalDisplay", - "args": [], + "name": "pullRequests", + "description": "Branch pullRequests PullRequest", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "merged", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "baseBranchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PullRequestOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -35264,548 +35352,481 @@ }, { "kind": "ENUM", - "name": "PolicyCompliaceState", - "description": null, + "name": "_PullRequestOrdering", + "description": "Ordering Enum for PullRequest", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created", - "description": null, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "in_review", - "description": null, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "reviewed", - "description": null, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyCompliance", - "description": null, - "fields": [ + }, { - "name": "_branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "_owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "number_asc", + "description": "Ascending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "_repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "number_desc", + "description": "Descending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "_sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "prId_asc", + "description": "Ascending sort for prId", "isDeprecated": false, "deprecationReason": null }, { - "name": "aspects", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyComplianceAspect", - "ofType": null - } - }, + "name": "prId_desc", + "description": "Descending sort for prId", "isDeprecated": false, "deprecationReason": null }, { - "name": "differences", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyComplianceFingerprint", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "PolicyCompliaceState", - "ofType": null - }, + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "targets", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyComplianceFingerprint", - "ofType": null - } - }, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this PolicyCompliance", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "merged_asc", + "description": "Ascending sort for merged", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyComplianceAspect", - "description": null, - "fields": [ + }, { - "name": "displayType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "merged_desc", + "description": "Descending sort for merged", "isDeprecated": false, "deprecationReason": null }, { - "name": "manageable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyComplianceFingerprint", - "description": null, - "fields": [ + }, { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "baseBranchName_asc", + "description": "Ascending sort for baseBranchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "displayName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "baseBranchName_desc", + "description": "Descending sort for baseBranchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "displayType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "branchName_asc", + "description": "Ascending sort for branchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "displayValue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "branchName_desc", + "description": "Descending sort for branchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "title_asc", + "description": "Ascending sort for title", "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "title_desc", + "description": "Descending sort for title", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 + }, + { + "name": "mergeStatus_asc", + "description": "Ascending sort for mergeStatus", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mergeStatus_desc", + "description": "Descending sort for mergeStatus", "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ReviewState", + "description": "Enum for ReviewState", + "fields": null, "inputFields": null, - "interfaces": [], - "enumValues": 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": "OBJECT", - "name": "SkillOutput", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_ReviewOrdering", + "description": "Ordering Enum for Review", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "_owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "_repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "_sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "classifier", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "gitHubId_asc", + "description": "Ascending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "correlationId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "gitHubId_desc", + "description": "Descending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "orgParentId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "reviewId_asc", + "description": "Ascending sort for reviewId", "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, + "name": "reviewId_desc", + "description": "Descending sort for reviewId", "isDeprecated": false, "deprecationReason": null }, { - "name": "repoParentId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "skill", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SkillOutputSkill", - "ofType": null - }, + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "uri", - "description": null, - "args": [], + "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": "INPUT_OBJECT", + "name": "_ReviewFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ReviewState", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this SkillOutput", - "args": [], + "name": "by_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "_SCMIdFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SkillOutputSkill", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_SCMIdFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "name", - "description": null, - "args": [], + "name": "person", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PersonFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_PersonFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "chatId", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ChatIdFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_ChatIdFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "screenName", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "version", - "description": null, - "args": [], + "name": "screenName_not", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Tag", - "description": "Tag-Node", + "name": "Review", + "description": "Review-Node", "fields": [ { "name": "_id", @@ -35821,7 +35842,7 @@ }, { "name": "url", - "description": "the URL of the Tag", + "description": "the URL of the Review", "args": [], "type": { "kind": "SCALAR", @@ -35833,7 +35854,7 @@ }, { "name": "id", - "description": "id of Tag", + "description": "id of Review", "args": [], "type": { "kind": "SCALAR", @@ -35844,8 +35865,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of Tag", + "name": "gitHubId", + "description": "gitHubId of Review", "args": [], "type": { "kind": "SCALAR", @@ -35856,8 +35877,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "description of Tag", + "name": "reviewId", + "description": "reviewId of Review", "args": [], "type": { "kind": "SCALAR", @@ -35868,8 +35889,8 @@ "deprecationReason": null }, { - "name": "ref", - "description": "ref of Tag", + "name": "body", + "description": "body of Review", "args": [], "type": { "kind": "SCALAR", @@ -35880,8 +35901,20 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Tag", + "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", @@ -35892,15 +35925,27 @@ "deprecationReason": null }, { - "name": "release", - "description": "Tag release Release", + "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": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -35916,7 +35961,41 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SCMIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -35924,19 +36003,33 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_SCMIdFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Release", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { "name": "commit", - "description": "Tag commit Commit", + "description": "Review commit Commit", "args": [ { "name": "sha", @@ -35978,21 +36071,21 @@ "deprecationReason": null }, { - "name": "containers", - "description": "Tag containers DockerImage", + "name": "comments", + "description": "Review comments Comment", "args": [ { - "name": "image", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "imageName", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -36002,41 +36095,37 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "timestamp", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "commentId", "description": "", "type": { "kind": "SCALAR", @@ -36044,36 +36133,19 @@ "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", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "buildId", + "name": "path", "description": "", "type": { "kind": "SCALAR", @@ -36083,17 +36155,17 @@ "defaultValue": null }, { - "name": "number", + "name": "position", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -36103,57 +36175,78 @@ "defaultValue": null }, { - "name": "status", + "name": "orderBy", "description": "", "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommentOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "buildUrl", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "compareUrl", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "trigger", + "name": "commentType", "description": "", "type": { "kind": "ENUM", - "name": "BuildTrigger", + "name": "CommentCommentType", "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": "provider", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "number", "description": "", "type": { "kind": "SCALAR", @@ -36163,7 +36256,7 @@ "defaultValue": null }, { - "name": "startedAt", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -36173,7 +36266,7 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -36183,7 +36276,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -36193,7 +36286,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -36203,17 +36296,17 @@ "defaultValue": null }, { - "name": "jobName", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "jobId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -36223,41 +36316,27 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -36265,107 +36344,19 @@ "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": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the Release", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -36375,7 +36366,7 @@ "defaultValue": null }, { - "name": "description", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -36385,7 +36376,7 @@ "defaultValue": null }, { - "name": "ref", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -36395,11 +36386,11 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -36407,7 +36398,7 @@ ], "type": { "kind": "OBJECT", - "name": "Tag", + "name": "PullRequest", "ofType": null }, "isDeprecated": false, @@ -36421,8 +36412,8 @@ }, { "kind": "ENUM", - "name": "_DockerImageOrdering", - "description": "Ordering Enum for DockerImage", + "name": "_CommentOrdering", + "description": "Ordering Enum for Comment", "fields": null, "inputFields": null, "interfaces": null, @@ -36440,26 +36431,26 @@ "deprecationReason": null }, { - "name": "image_asc", - "description": "Ascending sort for image", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "image_desc", - "description": "Descending sort for image", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_asc", - "description": "Ascending sort for imageName", + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_desc", - "description": "Descending sort for imageName", + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, @@ -36474,14 +36465,139 @@ "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": "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": "OBJECT", - "name": "DockerImage", - "description": "DockerImage-Node", + "name": "Comment", + "description": "Comment-Node", "fields": [ { "name": "_id", @@ -36496,8 +36612,8 @@ "deprecationReason": null }, { - "name": "image", - "description": "image of DockerImage", + "name": "url", + "description": "the url of the Comment", "args": [], "type": { "kind": "SCALAR", @@ -36508,8 +36624,20 @@ "deprecationReason": null }, { - "name": "imageName", - "description": "imageName of DockerImage", + "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", @@ -36521,7 +36649,7 @@ }, { "name": "timestamp", - "description": "timestamp of DockerImage", + "description": "timestamp of Comment", "args": [], "type": { "kind": "SCALAR", @@ -36532,111 +36660,127 @@ "deprecationReason": null }, { - "name": "pods", - "description": "DockerImage pods K8Pod", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "specsJSON", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + "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": "", + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "envJSON", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -36646,7 +36790,7 @@ "defaultValue": null }, { - "name": "metadataJSON", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -36656,88 +36800,100 @@ "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "state", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8PodOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "IssueState", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "action", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "resourceVersion", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - } + "kind": "OBJECT", + "name": "Issue", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commits", - "description": "DockerImage commits Commit", + "name": "review", + "description": "Comment review Review", "args": [ { - "name": "sha", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -36747,41 +36903,47 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "reviewId", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submittedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -36792,23 +36954,39 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } + "kind": "OBJECT", + "name": "Review", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containers", - "description": "DockerImage containers K8Container", + "name": "pullRequest", + "description": "Comment pullRequest PullRequest", "args": [ { - "name": "name", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -36818,7 +36996,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -36828,7 +37006,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -36838,7 +37016,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -36848,7 +37026,17 @@ "defaultValue": null }, { - "name": "containerJSON", + "name": "merged", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -36858,7 +37046,7 @@ "defaultValue": null }, { - "name": "state", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -36868,7 +37056,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -36878,27 +37066,27 @@ "defaultValue": null }, { - "name": "ready", + "name": "title", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "restartCount", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "statusJSON", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -36908,51 +37096,70 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "mergedAt", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "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": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "containerID", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -36963,13 +37170,9 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } + "kind": "OBJECT", + "name": "SCMId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -36982,203 +37185,333 @@ }, { "kind": "ENUM", - "name": "_K8PodOrdering", - "description": "Ordering Enum for K8Pod", + "name": "BuildStatus", + "description": "Enum for BuildStatus", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "passed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "broken", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "failed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "started", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "phase_asc", - "description": "Ascending sort for phase", + "name": "canceled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "phase_desc", - "description": "Descending sort for phase", + "name": "pending", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "environment_asc", - "description": "Ascending sort for environment", + "name": "error", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "environment_desc", - "description": "Descending sort for environment", + "name": "queued", + "description": "", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BuildTrigger", + "description": "Enum for BuildTrigger", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "pull_request", + "description": "Value for pull_request", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "push", + "description": "Value for push", "isDeprecated": false, "deprecationReason": null }, { - "name": "baseName_asc", - "description": "Ascending sort for baseName", + "name": "tag", + "description": "Value for tag", "isDeprecated": false, "deprecationReason": null }, { - "name": "baseName_desc", - "description": "Descending sort for baseName", + "name": "cron", + "description": "Value for cron", + "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": "namespace_asc", - "description": "Ascending sort for namespace", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "namespace_desc", - "description": "Descending sort for namespace", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", + "name": "buildId_asc", + "description": "Ascending sort for buildId", "isDeprecated": false, "deprecationReason": null }, { - "name": "host_asc", - "description": "Ascending sort for host", + "name": "buildId_desc", + "description": "Descending sort for buildId", "isDeprecated": false, "deprecationReason": null }, { - "name": "host_desc", - "description": "Descending sort for host", + "name": "number_asc", + "description": "Ascending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "number_desc", + "description": "Descending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "specsJSON_asc", - "description": "Ascending sort for specsJSON", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "specsJSON_desc", - "description": "Descending sort for specsJSON", + "name": "status_asc", + "description": "Ascending sort for status", "isDeprecated": false, "deprecationReason": null }, { - "name": "envJSON_asc", - "description": "Ascending sort for envJSON", + "name": "status_desc", + "description": "Descending sort for status", "isDeprecated": false, "deprecationReason": null }, { - "name": "envJSON_desc", - "description": "Descending sort for envJSON", + "name": "buildUrl_asc", + "description": "Ascending sort for buildUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "metadataJSON_asc", - "description": "Ascending sort for metadataJSON", + "name": "buildUrl_desc", + "description": "Descending sort for buildUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "metadataJSON_desc", - "description": "Descending sort for metadataJSON", + "name": "compareUrl_asc", + "description": "Ascending sort for compareUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "containersCrashLoopBackOff_asc", - "description": "Ascending sort for containersCrashLoopBackOff", + "name": "compareUrl_desc", + "description": "Descending sort for compareUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "containersCrashLoopBackOff_desc", - "description": "Descending sort for containersCrashLoopBackOff", + "name": "trigger_asc", + "description": "Ascending sort for trigger", "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", + "name": "trigger_desc", + "description": "Descending sort for trigger", "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", + "name": "provider_asc", + "description": "Ascending sort for provider", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "K8Pod", - "description": "K8Pod-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "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": "OBJECT", + "name": "Build", + "description": "Build-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", @@ -37189,20 +37522,20 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of K8Pod", + "name": "id", + "description": "id of Build", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "phase", - "description": "phase of K8Pod", + "name": "buildId", + "description": "buildId of Build", "args": [], "type": { "kind": "SCALAR", @@ -37213,20 +37546,20 @@ "deprecationReason": null }, { - "name": "environment", - "description": "environment of K8Pod", + "name": "number", + "description": "number of Build", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of K8Pod", + "name": "name", + "description": "name of Build", "args": [], "type": { "kind": "SCALAR", @@ -37237,8 +37570,20 @@ "deprecationReason": null }, { - "name": "baseName", - "description": "baseName of K8Pod", + "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", @@ -37249,8 +37594,8 @@ "deprecationReason": null }, { - "name": "namespace", - "description": "namespace of K8Pod", + "name": "compareUrl", + "description": "compareUrl of Build", "args": [], "type": { "kind": "SCALAR", @@ -37261,8 +37606,20 @@ "deprecationReason": null }, { - "name": "statusJSON", - "description": "statusJSON of K8Pod", + "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", @@ -37273,8 +37630,20 @@ "deprecationReason": null }, { - "name": "host", - "description": "host of K8Pod", + "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", @@ -37285,8 +37654,8 @@ "deprecationReason": null }, { - "name": "state", - "description": "state of K8Pod", + "name": "finishedAt", + "description": "finishedAt of Build", "args": [], "type": { "kind": "SCALAR", @@ -37297,8 +37666,8 @@ "deprecationReason": null }, { - "name": "specsJSON", - "description": "specsJSON of K8Pod", + "name": "timestamp", + "description": "timestamp of Build", "args": [], "type": { "kind": "SCALAR", @@ -37309,8 +37678,8 @@ "deprecationReason": null }, { - "name": "envJSON", - "description": "envJSON of K8Pod", + "name": "workflowId", + "description": "workflowId of Build", "args": [], "type": { "kind": "SCALAR", @@ -37321,8 +37690,8 @@ "deprecationReason": null }, { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", + "name": "jobName", + "description": "jobName of Build", "args": [], "type": { "kind": "SCALAR", @@ -37333,35 +37702,45 @@ "deprecationReason": null }, { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", + "name": "jobId", + "description": "jobId of Build", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", + "name": "data", + "description": "data of Build", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "images", - "description": "K8Pod images DockerImage", + "name": "repo", + "description": "Build repo Repo", "args": [ { - "name": "image", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -37371,7 +37750,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -37381,41 +37760,57 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "allowRebaseMerge", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -37426,33 +37821,29 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } + "kind": "OBJECT", + "name": "Repo", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containers", - "description": "K8Pod containers K8Container", + "name": "push", + "description": "Build push Push", "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "imageName", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -37462,7 +37853,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "branch", "description": "", "type": { "kind": "SCALAR", @@ -37470,9 +37861,42 @@ "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": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "environment", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -37482,7 +37906,7 @@ "defaultValue": null }, { - "name": "containerJSON", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -37492,7 +37916,7 @@ "defaultValue": null }, { - "name": "state", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -37502,7 +37926,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -37512,7 +37936,7 @@ "defaultValue": null }, { - "name": "ready", + "name": "merged", "description": "", "type": { "kind": "SCALAR", @@ -37522,17 +37946,17 @@ "defaultValue": null }, { - "name": "restartCount", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "statusJSON", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -37542,51 +37966,57 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "title", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "containerID", + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -37594,197 +38024,205 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": 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", + "name": "tag", + "description": "Build tag Tag", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ref", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Tag", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "commit", + "description": "Build commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, "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", + "name": "workflow", + "description": "Build workflow Workflow", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "config", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "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": "K8Container", - "description": "K8Container-Node", + "name": "Push", + "description": "Push-Node", "fields": [ { "name": "_id", @@ -37799,24 +38237,12 @@ "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", + "name": "id", + "description": "id of Push", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -37824,55 +38250,7 @@ }, { "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", + "description": "timestamp of Push", "args": [], "type": { "kind": "SCALAR", @@ -37883,32 +38261,8 @@ "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", + "name": "branch", + "description": "branch of Push", "args": [], "type": { "kind": "SCALAR", @@ -37919,35 +38273,66 @@ "deprecationReason": null }, { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", + "name": "toBranch", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerID", - "description": "containerID of K8Container", - "args": [], + "name": "after", + "description": "Push after Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": "K8Container image DockerImage", + "name": "before", + "description": "Push before Commit", "args": [ { - "name": "image", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -37957,7 +38342,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -37979,18 +38364,18 @@ ], "type": { "kind": "OBJECT", - "name": "DockerImage", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pod", - "description": "K8Container pod K8Pod", + "name": "commits", + "description": "Push commits Commit", "args": [ { - "name": "name", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -38000,7 +38385,7 @@ "defaultValue": null }, { - "name": "phase", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -38010,27 +38395,41 @@ "defaultValue": null }, { - "name": "environment", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "baseName", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -38038,19 +38437,36 @@ "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": "namespace", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "statusJSON", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -38060,7 +38476,7 @@ "defaultValue": null }, { - "name": "host", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -38070,37 +38486,37 @@ "defaultValue": null }, { - "name": "state", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "specsJSON", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "envJSON", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "metadataJSON", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -38110,21 +38526,21 @@ "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "resourceVersion", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -38132,90 +38548,7 @@ ], "type": { "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Workflow", - "description": "Workflow-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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", + "name": "Repo", "ofType": null }, "isDeprecated": false, @@ -38223,7 +38556,7 @@ }, { "name": "builds", - "description": "Workflow builds Build", + "description": "Push builds Build", "args": [ { "name": "id", @@ -38441,1186 +38774,864 @@ }, "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": "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": "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": "Status", - "description": "Status-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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": [], + "name": "pipelines", + "description": "Pipelines associated with this Push", + "args": [ + { + "name": "pipelineId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "Status commit Commit", + "name": "goals", + "description": null, "args": [ { - "name": "sha", - "description": "", + "name": "approvalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "message", - "description": "", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamp", - "description": "", + "name": "data", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": "_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": "_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": "HerokuApp", - "description": "HerokuApp-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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": "", + "name": "description", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "message", - "description": "", + "name": "environment", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "error", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "externalKey", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "externalUrl", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamp", - "description": "", + "name": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": "Application", - "description": "Application-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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": "", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "message", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "parameters", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "phase", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "preApprovalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamp", - "description": "", + "name": "registration", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": "INTERFACE", - "name": "SourceFingerprint", - "description": "Fingerprint of some artifact in an SCM repository", - "fields": [ - { - "name": "data", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + { + "name": "retryFeasible", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoal", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayName", - "description": "", - "args": [], + "name": "goalSets", + "description": null, + "args": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalSet", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayType", - "description": "", - "args": [], + "name": "goalsDisplayState", + "description": null, + "args": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalDisplay", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayValue", - "description": "", + "name": "compliance", + "description": null, + "args": [ + { + "name": "_branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyCompliance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Pipeline", + "description": "Pipeline-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "status", + "description": "Pipeline status", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "PipelineStatus", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "provider", + "description": "Pipieline provider", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "PipelineProvider", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": "", + "name": "pipelineId", + "description": "Source id of the pipeline from the provider", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": "", + "name": "createdAt", + "description": "The time this Pipeline was created", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "GenericSourceFingerprint", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LeinDependency", - "ofType": null }, { - "kind": "OBJECT", - "name": "MavenDependency", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "NpmDependency", - "ofType": 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", + "name": "finishedAt", + "description": "The time this Pipeline finished. Empty if not finished.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "repo", + "description": "The repo this pipeline ran against", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "push", + "description": "The push that triggered this pipeline if applicable", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "commit", + "description": "The commit associated with this pipeline if applicable", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "stages", + "description": "The set of stages associated with this pipeline", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Stage", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PipelineStatus", + "description": "Enum for PipelineStatus", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name_desc", - "description": "Descending sort for name", + "name": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "pending", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "success", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "isRemote_asc", - "description": "Ascending sort for isRemote", + "name": "failed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "isRemote_desc", - "description": "Descending sort for isRemote", + "name": "canceled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "remoteRepoHtmlUrl_asc", - "description": "Ascending sort for remoteRepoHtmlUrl", + "name": "skipped", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "remoteRepoHtmlUrl_desc", - "description": "Descending sort for remoteRepoHtmlUrl", + "name": "manual", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -39629,188 +39640,351 @@ }, { "kind": "ENUM", - "name": "_SCMProviderOrdering", - "description": "Ordering Enum for SCMProvider", + "name": "PipelineProvider", + "description": "Enum for the PipelineProviders", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "gitlab_ci", + "description": "Gitlab CI Pipeline", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Stage", + "description": "Stage-Node", + "fields": [ { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "name", + "description": "The name of this stage", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "pipeline", + "description": "The pipeline that this stage belongs to", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "jobs", + "description": "The list of jobs associated with this stage", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Job", + "description": "Job-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_desc", - "description": "Descending sort for url", + "name": "when", + "description": "When this job gets triggered", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId_asc", - "description": "Ascending sort for providerId", + "name": "manual", + "description": "Is this job triggered manually?", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId_desc", - "description": "Descending sort for providerId", + "name": "name", + "description": "The name of this job", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", + "name": "jobId", + "description": "The source id of this job. The ID assigned to it by its provider", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", + "name": "startedAt", + "description": "When this job started as an ISO8601 string. Blank until started.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", + "name": "finishedAt", + "description": "When this job finished as an ISO8601 string. Blank until finished.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", + "name": "status", + "description": "The status of this job. Blank until started.", + "args": [], + "type": { + "kind": "ENUM", + "name": "JobStatus", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_asc", - "description": "Ascending sort for providerType", + "name": "runner", + "description": "The runner for this job. Blank until started.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_desc", - "description": "Descending sort for providerType", + "name": "stage", + "description": "The stage this job is associated with", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Stage", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_ChatTeamOrdering", - "description": "Ordering Enum for ChatTeam", + "name": "JobStatus", + "description": "Enum for JobStatus", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "created", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "pending", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "failed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "success", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "canceled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_asc", - "description": "Ascending sort for provider", + "name": "skipped", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", + "name": "manual", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SdmGoalState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "success", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "domain_asc", - "description": "Ascending sort for domain", + "name": "pre_approved", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "domain_desc", - "description": "Descending sort for domain", + "name": "requested", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "messageCount_asc", - "description": "Ascending sort for messageCount", + "name": "waiting_for_pre_approval", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "messageCount_desc", - "description": "Descending sort for messageCount", + "name": "approved", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain_asc", - "description": "Ascending sort for emailDomain", + "name": "waiting_for_approval", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain_desc", - "description": "Descending sort for emailDomain", + "name": "failure", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stopped", + "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 + }, + { + "name": "canceled", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -39819,443 +39993,548 @@ }, { "kind": "OBJECT", - "name": "AtomistRegistration", - "description": "", + "name": "SdmGoal", + "description": null, "fields": [ { - "name": "name", - "description": "", + "name": "approval", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmProvenance", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "defaultBranch", - "description": "", + "name": "approvalRequired", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "branch", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not", - "description": "", + "name": "data", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", - "description": "", + "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoId", - "description": "", + "name": "descriptions", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SdmGoalDescriptions", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "pullRequest", - "description": "", + "name": "environment", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", + "name": "error", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name_not", - "description": "", + "name": "externalKey", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch", - "description": "", + "name": "externalUrl", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commits_some", - "description": "", + "name": "externalUrls", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmExternalUrl", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "head", - "description": "", + "name": "fulfillment", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "method", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", + "kind": "OBJECT", + "name": "SdmGoalFulfillment", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": "", + "name": "goalSet", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "labels_some", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", + "name": "goalSetId", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "isRemote", - "description": "", + "name": "name", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "sha", - "description": "", + "name": "parameters", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", + "name": "phase", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "repo", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "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", + "name": "preApproval", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SdmProvenance", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "preApprovalRequired", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "preConditions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmCondition", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", + "name": "provenance", + "description": null, + "args": [ + { + "name": "registration", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmProvenance", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", + "name": "push", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_asc", - "description": "Ascending sort for provider", + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", + "name": "repo", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SdmRepository", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "config_asc", - "description": "Ascending sort for config", + "name": "retryFeasible", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "config_desc", - "description": "Descending sort for config", - "isDeprecated": false, - "deprecationReason": 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", + "name": "sha", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "signature", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "uniqueName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "id", + "description": "The ID of this SdmGoal", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DeletedBranch", - "description": "DeletedBranch-Node", + "name": "SdmProvenance", + "description": null, "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "channelId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of DeletedBranch", + "name": "correlationId", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -40263,7 +40542,7 @@ }, { "name": "name", - "description": "name of DeletedBranch", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -40274,8 +40553,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of DeletedBranch", + "name": "registration", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -40286,358 +40565,37 @@ "deprecationReason": null }, { - "name": "repo", - "description": "DeletedBranch repo Repo", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "ts", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Repo", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "DeletedBranch commit Commit", - "args": [ - { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "userId", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequests", - "description": "DeletedBranch pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "version", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -40649,101 +40607,49 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmGoalDescriptions", + "description": null, + "fields": [ { - "name": "repo", - "description": "", + "name": "canceled", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_GitHubAppInstallationOrdering", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "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": "OBJECT", - "name": "GitHubAppInstallation", - "description": "", - "fields": [ - { - "name": "_id", - "description": "", + "name": "completed", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "installationId", - "description": "", + "name": "failed", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", - "description": "", + "name": "inProcess", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -40754,72 +40660,56 @@ "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "planned", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": "", + "name": "requested", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType", - "description": "", + "name": "skipped", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "", + "name": "stopped", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "avatarUrl", - "description": "", + "name": "waitingForApproval", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -40830,8 +40720,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "", + "name": "waitingForPreApproval", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -40840,30 +40730,37 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "gitHubAppResourceProvider", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null - } + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmExternalUrl", + "description": null, + "fields": [ + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "token", - "description": "", + "name": "url", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "GitHubAppInstallationToken", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -40877,223 +40774,196 @@ }, { "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "description": "", + "name": "SdmGoalFulfillment", + "description": null, "fields": [ { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_id", - "description": "", + "name": "method", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "name", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "registration", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmCondition", + "description": null, + "fields": [ { - "name": "url", - "description": "", + "name": "environment", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "", + "name": "name", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "private", - "description": "private is this provider reachable on the public internet", + "name": "uniqueName", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmRepository", + "description": null, + "fields": [ { - "name": "apiUrl", - "description": "", + "name": "name", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitUrl", - "description": "", + "name": "owner", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType", - "description": "", + "name": "providerId", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoalSet", + "description": null, + "fields": [ { - "name": "applicationId", - "description": "the id of the atomist github app as provided by github", + "name": "branch", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "applicationName", - "description": "the name of the atomist github app", + "name": "goalSet", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "", + "name": "goalSetId", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", + "name": "goals", + "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "SdmGoalName", "ofType": null } }, @@ -41101,160 +40971,102 @@ "deprecationReason": null }, { - "name": "orgs", - "description": "", + "name": "provenance", + "description": null, "args": [ { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", + "name": "registration", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmProvenance", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppInstallations", - "description": "", + "name": "push", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": null, "args": [ { - "name": "installationId", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_GitHubAppInstallationOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ownerType", - "description": "", + "name": "providerId", + "description": null, "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppInstallation", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmRepository", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "authProviderId", - "description": "ID of the auth provider protecting this resource", + "name": "sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41265,26 +41077,27 @@ "deprecationReason": null }, { - "name": "webhooks", - "description": "will be empty for this type. Appears as on the interface.", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tags", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Webhook", + "name": "SdmGoalSetTag", "ofType": null } }, @@ -41292,62 +41105,60 @@ "deprecationReason": null }, { - "name": "credential", - "description": "will be null for this type. Appears as on the interface.", + "name": "ts", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "OAuthToken", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null + "name": "id", + "description": "The ID of this SdmGoalSet", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "GitHubAppInstallationToken", - "description": "", + "name": "SdmGoalName", + "description": null, "fields": [ { - "name": "secret", - "description": "", + "name": "name", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", - "description": "", + "name": "uniqueName", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -41359,179 +41170,182 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_GitHubAppResourceUserOrdering", - "description": "Ordering Enum for SCMId", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "SdmGoalSetTag", + "description": null, + "fields": [ { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login_desc", - "description": "Descending sort for login", + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GitHubAppResourceUser", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "compact", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "full", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "show_current", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "show_all", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoalDisplay", + "description": null, + "fields": [ + { + "name": "branch", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", - "description": "", + "name": "format", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", + "name": "push", + "description": null, "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "OBJECT", + "name": "Push", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "repo", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmRepository", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppProvider", - "description": "", + "name": "sha", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppInstallations", - "description": "", + "name": "state", + "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppUserInstallation", - "ofType": null - } - } + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", + "name": "ts", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "", + "name": "id", + "description": "The ID of this SdmGoalDisplay", "args": [], "type": { - "kind": "OBJECT", - "name": "Person", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -41539,40 +41353,59 @@ } ], "inputFields": null, - "interfaces": [ + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null + "name": "created", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "in_review", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "GitHubAppUserInstallation", - "description": "", + "name": "PolicyCompliance", + "description": null, "fields": [ { - "name": "installationId", - "description": "", + "name": "_branch", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", - "description": "", + "name": "_owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41583,15 +41416,39 @@ "deprecationReason": null }, { - "name": "owner", - "description": "", + "name": "_repo", + "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_sha", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aspects", + "description": null, + "args": [], + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PolicyComplianceAspect", "ofType": null } }, @@ -41599,15 +41456,15 @@ "deprecationReason": null }, { - "name": "ownerType", - "description": "", + "name": "differences", + "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", "ofType": null } }, @@ -41615,8 +41472,8 @@ "deprecationReason": null }, { - "name": "avatarUrl", - "description": "", + "name": "owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41625,157 +41482,180 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": 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", + "name": "push", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login_desc", - "description": "Descending sort for login", + "name": "targets", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "id", + "description": "The ID of this PolicyCompliance", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "PolicyComplianceAspect", + "description": null, + "fields": [ { - "name": "containers", - "description": "", + "name": "displayType", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "state", - "description": "", + "name": "manageable", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "description": "Ordering Enum for ImageLinked", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", + "description": null, + "fields": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "displayName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "displayType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImageLinked", - "description": "ImageLinked-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "displayValue", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of ImageLinked", + "name": "name", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41786,86 +41666,24 @@ "deprecationReason": null }, { - "name": "image", - "description": "ImageLinked image DockerImage", - "args": [ - { - "name": "image", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "sha", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "DockerImage", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "ImageLinked commit Commit", - "args": [ - { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "type", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -41877,211 +41695,10 @@ "enumValues": 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": "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": "_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": "OBJECT", - "name": "PushImpact", - "description": "PushImpact-Node", + "name": "Tag", + "description": "Tag-Node", "fields": [ { "name": "_id", @@ -42095,21 +41712,9 @@ "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", + "description": "the URL of the Tag", "args": [], "type": { "kind": "SCALAR", @@ -42120,157 +41725,44 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of PushImpact", + "name": "id", + "description": "id of Tag", "args": [], "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": "PushImpact push Push", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Push", + "name": "ID", "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": "OBJECT", - "name": "PullRequestImpact", - "description": "PullRequestImpact-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "name", + "description": "name of Tag", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of PullRequestImpact", + "name": "description", + "description": "description of Tag", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "url of PullRequestImpact", + "name": "ref", + "description": "ref of Tag", "args": [], "type": { "kind": "SCALAR", @@ -42281,8 +41773,8 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of PullRequestImpact", + "name": "timestamp", + "description": "timestamp of Tag", "args": [], "type": { "kind": "SCALAR", @@ -42293,8 +41785,8 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "PullRequestImpact pullRequest PullRequest", + "name": "release", + "description": "Tag release Release", "args": [ { "name": "id", @@ -42307,17 +41799,17 @@ "defaultValue": null }, { - "name": "number", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "prId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42325,9 +41817,22 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "Tag commit Commit", + "args": [ { - "name": "name", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -42337,7 +41842,7 @@ "defaultValue": null }, { - "name": "body", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -42347,7 +41852,7 @@ "defaultValue": null }, { - "name": "state", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42355,19 +41860,32 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containers", + "description": "Tag containers DockerImage", + "args": [ { - "name": "merged", + "name": "image", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -42377,37 +41895,41 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_DockerImageOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "branchName", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "title", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42415,9 +41937,36 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "updatedAt", + } + ], + "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": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", "description": "", "type": { "kind": "SCALAR", @@ -42427,7 +41976,17 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -42437,7 +41996,17 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -42447,20 +42016,158 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", "description": "", "type": { "kind": "ENUM", - "name": "MergeStatus", + "name": "BuildTrigger", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pullRequestNumber", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "finishedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BuildOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Build", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -42471,192 +42178,31 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "_ResourceProviderOrdering", - "description": "Ordering Enum for ResourceProvider", - "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": "_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": "ENUM", - "name": "DockerRegistryType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "JFrog", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DockerHub", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "Release", "description": "", "fields": [ { - "name": "_typenames", + "name": "_id", "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", + "name": "url", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -42666,19 +42212,15 @@ "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "gitHubId", "description": "", "args": [], "type": { @@ -42694,23 +42236,19 @@ "deprecationReason": null }, { - "name": "type", + "name": "name", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DockerRegistryType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", + "name": "timestamp", "description": "", "args": [], "type": { @@ -42722,19 +42260,19 @@ "deprecationReason": null }, { - "name": "state", + "name": "action", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", + "kind": "ENUM", + "name": "ReleaseAction", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "tag", "description": "", "args": [ { @@ -42742,7 +42280,7 @@ "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -42758,7 +42296,27 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ref", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42769,493 +42327,151 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } + "kind": "OBJECT", + "name": "Tag", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ReleaseAction", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "authProviderId", + "name": "published", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "unpublished", "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "created", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhooks", + "name": "edited", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenericResourceProvider", - "description": "", - "fields": [ - { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "deleted", "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "prereleased", "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "webhooks", + "name": "released", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "BinaryRepositoryType", - "description": "", + "name": "_DockerImageOrdering", + "description": "Ordering Enum for DockerImage", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "maven2", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "npm", - "description": "", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BinaryRepositoryProvider", - "description": "", - "fields": [ + }, { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "image_asc", + "description": "Ascending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "image_desc", + "description": "Descending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "imageName_asc", + "description": "Ascending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "imageName_desc", + "description": "Descending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BinaryRepositoryType", - "ofType": null - } - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DockerImage", + "description": "DockerImage-Node", + "fields": [ { - "name": "state", - "description": "", + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authProviderId", - "description": "", + "name": "image", + "description": "image of DockerImage", "args": [], "type": { "kind": "SCALAR", @@ -43266,20 +42482,20 @@ "deprecationReason": null }, { - "name": "credential", - "description": "", + "name": "imageName", + "description": "imageName of DockerImage", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "", + "name": "timestamp", + "description": "timestamp of DockerImage", "args": [], "type": { "kind": "SCALAR", @@ -43290,124 +42506,31 @@ "deprecationReason": null }, { - "name": "webhooks", - "description": "", + "name": "pods", + "description": "DockerImage pods K8Pod", "args": [ { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "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": "OBJECT", - "name": "UserJoinedChannel", - "description": "UserJoinedChannel-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "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", + "name": "phase", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "screenName", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -43417,7 +42540,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -43427,7 +42550,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", @@ -43437,7 +42560,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", @@ -43447,7 +42570,7 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -43457,7 +42580,7 @@ "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -43467,7 +42590,7 @@ "defaultValue": null }, { - "name": "isAdmin", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -43477,7 +42600,7 @@ "defaultValue": null }, { - "name": "isBot", + "name": "specsJSON", "description": "", "type": { "kind": "SCALAR", @@ -43487,7 +42610,17 @@ "defaultValue": null }, { - "name": "timezoneLabel", + "name": "envJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadataJSON", "description": "", "type": { "kind": "SCALAR", @@ -43495,30 +42628,159 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "containersCrashLoopBackOff", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8PodOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceVersion", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Pod", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "UserJoinedChannel channel ChatChannel", + "name": "commits", + "description": "DockerImage commits Commit", "args": [ { - "name": "id", + "name": "sha", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "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": "", @@ -43530,7 +42792,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -43540,7 +42802,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -43550,7 +42812,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -43560,27 +42822,37 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "containerJSON", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "state", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "stateReason", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ready", "description": "", "type": { "kind": "SCALAR", @@ -43588,12 +42860,90 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "restartCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceVersion", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8ContainerOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containerID", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Container", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -43605,594 +42955,251 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GenericResourceUser", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "_K8PodOrdering", + "description": "Ordering Enum for K8Pod", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "phase_asc", + "description": "Ascending sort for phase", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - }, + "name": "phase_desc", + "description": "Descending sort for phase", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "environment_asc", + "description": "Ascending sort for environment", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SystemAccount", - "description": "", - "fields": [ + "name": "environment_desc", + "description": "Descending sort for environment", + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "baseName_asc", + "description": "Ascending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "baseName_desc", + "description": "Descending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - }, + "name": "namespace_asc", + "description": "Ascending sort for namespace", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "namespace_desc", + "description": "Descending sort for namespace", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdBy", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "statusJSON_asc", + "description": "Ascending sort for statusJSON", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "description": "", - "fields": [ + "name": "statusJSON_desc", + "description": "Descending sort for statusJSON", + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "host_asc", + "description": "Ascending sort for host", "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "host_desc", + "description": "Descending sort for host", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "clusters", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KubernetesCluster", - "ofType": null - } - } - }, + "name": "specsJSON_asc", + "description": "Ascending sort for specsJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "specsJSON_desc", + "description": "Descending sort for specsJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null - }, + "name": "envJSON_asc", + "description": "Ascending sort for envJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, + "name": "envJSON_desc", + "description": "Descending sort for envJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "metadataJSON_asc", + "description": "Ascending sort for metadataJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "metadataJSON_desc", + "description": "Descending sort for metadataJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "webhooks", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, + "name": "containersCrashLoopBackOff_asc", + "description": "Ascending sort for containersCrashLoopBackOff", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "containersCrashLoopBackOff_desc", + "description": "Descending sort for containersCrashLoopBackOff", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KubernetesCluster", - "description": "", - "fields": [ + "name": "resourceVersion_asc", + "description": "Ascending sort for resourceVersion", + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "resourceVersion_desc", + "description": "Descending sort for resourceVersion", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Password", - "description": "", + "name": "K8Pod", + "description": "K8Pod-Node", "fields": [ { - "name": "_typenames", + "name": "_id", "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", + "name": "name", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "phase", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", + "name": "environment", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "secret", + "name": "clusterName", "description": "", "args": [], "type": { @@ -44206,258 +43213,387 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommitFingerprintImpact", - "description": "", - "fields": [ + }, { - "name": "diffs", + "name": "timestamp", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FingerprintDiff", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "baseName", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "offTarget", + "name": "namespace", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", + "name": "statusJSON", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", + "name": "host", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "previousCommit", + "name": "state", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", + "name": "specsJSON", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Repo", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintDiff", - "description": "", - "fields": [ + }, { - "name": "from", + "name": "envJSON", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "to", + "name": "metadataJSON", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PagingInfoInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "after", + "name": "containersCrashLoopBackOff", "description": "", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommitsWithFingerprints", - "description": "", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "_paging", + "name": "resourceVersion", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "PagingInfo", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commits", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "name": "images", + "description": "K8Pod images DockerImage", + "args": [ + { + "name": "image", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FingerprintedCommit", + "kind": "ENUM", + "name": "_DockerImageOrdering", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PagingInfo", - "description": "", - "fields": [ + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "after", - "description": "If present, indicates that there are more results", - "args": [], + "name": "containers", + "description": "K8Pod containers K8Container", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containerJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stateReason", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ready", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "restartCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceVersion", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8ContainerOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containerID", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Container", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -44468,108 +43604,248 @@ "enumValues": 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": "FingerprintedCommit", - "description": "A commit", + "name": "K8Container", + "description": "K8Container-Node", "fields": [ { - "name": "analysis", + "name": "_id", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDefaultBranch", + "name": "name", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", + "name": "imageName", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", + "name": "timestamp", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", + "name": "environment", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Repo", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintAggregates", - "description": "", - "fields": [ + }, { - "name": "inRepos", - "description": "How many repos contain this fingeprint type/name?", + "name": "clusterName", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -44577,293 +43853,293 @@ "deprecationReason": null }, { - "name": "latestSemVerAvailable", - "description": "Latest semver available if the SourceFingerprint supports it", + "name": "containerJSON", + "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "latestSemVerUsed", - "description": "Latest semver used if the SourceFingerprint supports it", + "name": "state", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "SourceFingerprintStats", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostFrequentlyUsed", - "description": "Which value/sha has been most frequently seen?", + "name": "stateReason", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "SourceFingerprintStats", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostRecentlyUsed", - "description": "Which value/sha has been most recently seen?", + "name": "ready", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "SourceFingerprintStats", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalRepos", - "description": "How many repos have been seen in total?", + "name": "restartCount", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalVariants", - "description": "How many different values/shas are there for this type/name?", + "name": "statusJSON", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SourceFingerprintStats", - "description": "", - "fields": [ - { - "name": "fingerprint", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inRepos", - "description": "How many repos has this fingerprint been seen in?", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintTarget", - "description": "", - "fields": [ - { - "name": "fingerprint", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintCounts", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostFrequentlyUsed", + "name": "resourceVersion", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostRecentlyUsed", + "name": "containerID", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "types", + "name": "image", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FingerprintTypeCount", - "ofType": null - } - } + "args": [ + { + "name": "image", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintTypeCount", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "names", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FinterprintNameCount", - "ofType": null - } - } + "name": "pod", + "description": "K8Container pod K8Pod", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phase", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "baseName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "statusJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "host", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "specsJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "envJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metadataJSON", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "containersCrashLoopBackOff", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceVersion", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "K8Pod", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -44876,90 +44152,36 @@ }, { "kind": "OBJECT", - "name": "FinterprintNameCount", - "description": "", + "name": "Workflow", + "description": "Workflow-Node", "fields": [ { - "name": "count", - "description": "", + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "id", + "description": "id of Workflow", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtmJobState", - "description": "The state of an AtmJob", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "preparing", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", - "description": "", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "timedout", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtmJob", - "description": "A AtmJob, made up of many AtmJobTasks", - "fields": [ - { - "name": "completedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJob was considered complete (when all tasks were complete)", + "name": "name", + "description": "name of Workflow", "args": [], "type": { "kind": "SCALAR", @@ -44970,40 +44192,8 @@ "deprecationReason": null }, { - "name": "completedCount", - "description": "The number of AtmJobTasks on this AtmJob that are in a completed state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "An ISO8601 timestamp generated by the API when the AtmJob is created", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "Used to store additional information about this AtmJob", + "name": "workflowId", + "description": "workflowId of Workflow", "args": [], "type": { "kind": "SCALAR", @@ -45014,8 +44204,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "A description for this AtmJob", + "name": "provider", + "description": "provider of Workflow", "args": [], "type": { "kind": "SCALAR", @@ -45026,159 +44216,232 @@ "deprecationReason": null }, { - "name": "id", - "description": "The ID of this AtmJob. Generated by the API.", + "name": "config", + "description": "config of Workflow", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "jobCount", - "description": "The number of AtmJobTasks that make up this job", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jobTasks", - "description": "A list of AtmJobTasks that make up this job", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "name": "builds", + "description": "Workflow builds Build", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildTrigger", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pullRequestNumber", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "finishedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", + "kind": "ENUM", + "name": "_BuildOrdering", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maxRunningTasks", - "description": "The maximum number of running (in-flight) tasks. By default, all tasks will be in-flight from the time the job is created.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "A name for this AtmJob", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": "The owner of this job. Clients may use this in a subscription to avoid all clients subscribing to all tasks in a team.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "The AtmJobState of this AtmJob", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtmJobState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taskCount", - "description": "The number of AtmJobTasks that make up this job", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJob is updated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "Build", "ofType": null } }, @@ -45192,193 +44455,117 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "AtmJobTask", - "description": "A Task that makes up part of a AtmJob", - "fields": [ + "kind": "ENUM", + "name": "_TagOrdering", + "description": "Ordering Enum for Tag", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "completedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJobTask was considered complete", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "An ISO8601 timestamp generated by the API when the AtmJobTask is created", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "data", - "description": "Used to store additional information about this AtmJobTask", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this AtmJobTask. Generated by the API.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "isCompleted", - "description": "Is true if the task is in a completed state", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "job", - "description": "The owning job", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": "Used to store additional information about the state of this AtmJobTask", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "description_asc", + "description": "Ascending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "A name for this AtmJobTask", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "description_desc", + "description": "Descending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "The AtmJobTaskState of this AtmJobTask", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtmJobTaskState", - "ofType": null - } - }, + "name": "ref_asc", + "description": "Ascending sort for ref", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJobTask is updated", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "AtmJobTaskState", - "description": "The state of a AtmJobTask", + "name": "StatusState", + "description": "Enum for StatusState", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created", - "description": "", + "name": "pending", + "description": "Value for pending", "isDeprecated": false, "deprecationReason": null }, { - "name": "running", - "description": "", + "name": "success", + "description": "Value for success", "isDeprecated": false, "deprecationReason": null }, { - "name": "failed", - "description": "", + "name": "error", + "description": "Value for error", "isDeprecated": false, "deprecationReason": null }, { - "name": "success", - "description": "", + "name": "failure", + "description": "Value for failure", "isDeprecated": false, "deprecationReason": null } @@ -45387,150 +44574,155 @@ }, { "kind": "ENUM", - "name": "_AtomistLogOrdering", - "description": "", + "name": "_StatusOrdering", + "description": "Ordering Enum for Status", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "asc", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "desc", - "description": "", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistLog", - "description": "", - "fields": [ + }, { - "name": "category", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "correlation_context", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "level", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": "", + "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": "Status", + "description": "Status-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", - "description": "", + "name": "id", + "description": "id of Status", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "", + "name": "state", + "description": "state of Status", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "StatusState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", - "description": "", - "fields": [ + }, { - "name": "automation", - "description": "", + "name": "description", + "description": "description of Status", "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistLogAutomation", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "correlation_id", - "description": "", + "name": "targetUrl", + "description": "targetUrl of Status", "args": [], "type": { "kind": "SCALAR", @@ -45539,21 +44731,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistLogAutomation", - "description": "", - "fields": [ + }, { - "name": "name", - "description": "", + "name": "context", + "description": "context of Status", "args": [], "type": { "kind": "SCALAR", @@ -45564,8 +44745,8 @@ "deprecationReason": null }, { - "name": "version", - "description": "", + "name": "timestamp", + "description": "timestamp of Status", "args": [], "type": { "kind": "SCALAR", @@ -45574,30 +44755,46 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Ok", - "description": "", - "fields": [ + }, { - "name": "ok", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "name": "commit", + "description": "Status commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -45610,45 +44807,57 @@ }, { "kind": "ENUM", - "name": "BucketUnit", - "description": "", + "name": "_PushOrdering", + "description": "Ordering Enum for Push", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "YEAR", - "description": "Group events by year.", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "MONTH", - "description": "Group events by month.", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "DAY", - "description": "Group events by day.", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "HOUR", - "description": "Group events by hour.", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "MINUTE", - "description": "Group events by minute.", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "SECOND", - "description": "Group events by second.", + "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 } @@ -45657,27 +44866,93 @@ }, { "kind": "ENUM", - "name": "EventType", - "description": "", + "name": "_HerokuAppOrdering", + "description": "Ordering Enum for HerokuApp", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "CHAT", - "description": "Chat events which have been received.", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "CUSTOM", - "description": "Custom events which have been received.", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "SCM", - "description": "Events which have been received from an SCM source.", + "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 } @@ -45686,278 +44961,307 @@ }, { "kind": "OBJECT", - "name": "EventsReportRow", - "description": "", + "name": "HerokuApp", + "description": "HerokuApp-Node", "fields": [ { - "name": "bucket", - "description": "The start date-time of this row.", + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatCount", - "description": "The number of chat events in this time bucket.", + "name": "app", + "description": "app of HerokuApp", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customCount", - "description": "The number of custom events in this time bucket.", + "name": "url", + "description": "url of HerokuApp", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scmCount", - "description": "The number of SCM events in this time bucket.", + "name": "timestamp", + "description": "timestamp of HerokuApp", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_Ordering", - "description": "asc or desc ordering. Must be used with orderBy", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "desc", - "description": "Descending order", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "asc", - "description": "Ascending order", + "name": "user", + "description": "user of HerokuApp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "references", - "description": null, + "name": "appId", + "description": "appId of HerokuApp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fixes", - "description": null, + "name": "release", + "description": "release of HerokuApp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommitIssueRelationship", - "description": null, - "fields": [ + }, { - "name": "commit", - "description": null, + "name": "commits", + "description": "HerokuApp commits Commit", "args": [ { "name": "sha", - "description": null, + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_CommitOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "issue", - "description": null, - "args": [ - { - "name": "name", - "description": null, + "name": "first", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "offset", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "timestamp", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "ofType": null + "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": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this CommitIssueRelationship", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", - "description": null, + "name": "Application", + "description": "Application-Node", "fields": [ { - "name": "owner", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": 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", @@ -45968,8 +45272,8 @@ "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "host", + "description": "host of Application", "args": [], "type": { "kind": "SCALAR", @@ -45978,21 +45282,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "timestamp", + "description": "timestamp of Application", "args": [], "type": { "kind": "SCALAR", @@ -46003,8 +45296,8 @@ "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "domain", + "description": "domain of Application", "args": [], "type": { "kind": "SCALAR", @@ -46015,8 +45308,8 @@ "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "data", + "description": "data of Application", "args": [], "type": { "kind": "SCALAR", @@ -46025,92 +45318,154 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Deployment", - "description": null, - "fields": [ + }, { - "name": "commit", - "description": null, + "name": "commits", + "description": "Application commits Commit", "args": [ { "name": "sha", - "description": null, + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "message", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_CommitOrdering", "ofType": null } }, "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "DeploymentCommit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DockerRegistryImage", + "description": "", + "fields": [ + { + "name": "imageName", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": null, + "name": "timestamp", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "dockerRegistry", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, @@ -46118,246 +45473,280 @@ }, { "name": "id", - "description": "The ID of this Deployment", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Resource", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "DeploymentCommit", - "description": null, + "kind": "INTERFACE", + "name": "Resource", + "description": "", "fields": [ { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": null, + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, - "possibleTypes": null + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DockerRegistryImage", + "ofType": null + } + ] }, { - "kind": "OBJECT", - "name": "IssueRelationship", - "description": null, + "kind": "INTERFACE", + "name": "DockerRegistry", + "description": "", "fields": [ { - "name": "relationshipId", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", - "description": null, - "args": [ - { - "name": "issue", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "target", - "description": null, - "args": [ - { - "name": "issue", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "timestamp", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registryName", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this IssueRelationship", + "name": "team", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dockerImages", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerRegistryImage", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, - "possibleTypes": null + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null + } + ] }, { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "description": null, + "kind": "INTERFACE", + "name": "SourceFingerprint", + "description": "Fingerprint of some artifact in an SCM repository", "fields": [ { - "name": "issue", - "description": null, + "name": "data", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -46368,8 +45757,8 @@ "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -46380,8 +45769,8 @@ "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "displayType", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -46390,21 +45779,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmBuildIdentifier", - "description": null, - "fields": [ + }, { - "name": "identifier", - "description": null, + "name": "displayValue", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -46414,1932 +45792,1333 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "id", - "description": "The ID of this SdmBuildIdentifier", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "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": "SdmBuildIdentifierRepository", - "description": null, - "fields": [ + }, { "name": "name", - "description": null, + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "sha", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "type", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, - "possibleTypes": null + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenericSourceFingerprint", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MavenDependency", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NpmDependency", + "ofType": null + } + ] }, { "kind": "ENUM", - "name": "SdmDeployState", - "description": null, + "name": "_BranchOrdering", + "description": "Ordering Enum for Branch", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "requested", - "description": null, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "disabled", - "description": null, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmDeployEnablement", - "description": null, - "fields": [ + }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmDeployState", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmDeployEnablement", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmVersion", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_SCMProviderOrdering", + "description": "Ordering Enum for SCMProvider", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmVersion", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "url_desc", + "description": "Descending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "providerId_asc", + "description": "Ascending sort for providerId", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmGoalSetBadge", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_ChatTeamOrdering", + "description": "Ordering Enum for ChatTeam", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmGoalSetBadgeRepository", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "sdm", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmGoalSetBadge", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SdmGoalSetBadgeRepository", - "description": null, + "name": "AtomistRegistration", + "description": "", "fields": [ { "name": "name", - "description": null, + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_IssueFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "owner", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "providerId", - "description": null, - "args": [], + "name": "repo", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmPreference", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "key", - "description": null, - "args": [], + "name": "defaultBranch", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ttl", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "value", - "description": null, - "args": [], + "name": "name_not", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this SdmPreference", - "args": [], + "name": "owner", + "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmRepoProvenance", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "provenance", - "description": null, - "args": [], + "name": "repoId", + "description": "", "type": { - "kind": "OBJECT", - "name": "SdmProvenance", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "branches_some", + "description": "", "type": { - "kind": "OBJECT", - "name": "SdmRepository", + "kind": "INPUT_OBJECT", + "name": "_BranchFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this SdmRepoProvenance", - "args": [], + "name": "channels_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "_ChatChannelFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyLog", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "apply", - "description": null, - "args": [], + "name": "issue_some", + "description": "", "type": { - "kind": "OBJECT", - "name": "ApplyPolicyLog", + "kind": "INPUT_OBJECT", + "name": "_IssueFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "manage", - "description": null, - "args": [], + "name": "issues_some", + "description": "", "type": { - "kind": "OBJECT", - "name": "ManageTargetPolicyLog", + "kind": "INPUT_OBJECT", + "name": "_IssueFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "name", - "description": null, - "args": [], + "name": "labels_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_LabelFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "subscribe", - "description": null, - "args": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "org", + "description": "", "type": { - "kind": "OBJECT", - "name": "ManageSubscriptionPolicyLog", + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ts", - "description": null, - "args": [], + "name": "pullRequest_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "pullRequests_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this PolicyLog", - "args": [], + "name": "pushes_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "_PushFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "AND", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + } + } + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ApplyPolicyLog", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_BranchFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "_prId", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "_sha", - "description": null, - "args": [], + "name": "isRemote", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_ChatChannelFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "branch", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "commit", - "description": null, - "args": [], + "name": "name_contains", + "description": "", "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_LabelFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "message", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "provider", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ProviderFilter", + "ofType": null + }, + "defaultValue": null }, { - "name": "pullRequest", - "description": null, - "args": [], + "name": "repo_some", + "description": "", "type": { - "kind": "OBJECT", - "name": "PullRequest", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "state", - "description": null, - "args": [], + "name": "repos_some", + "description": "", "type": { - "kind": "ENUM", - "name": "ApplyPolicyState", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetSha", - "description": null, - "args": [], + "name": "scmProvider", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_SCMProviderFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ApplyPolicyState", - "description": null, + "kind": "INPUT_OBJECT", + "name": "_ProviderFilter", + "description": "", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "no_change", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "failure", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ManageTargetPolicyLog", - "description": null, - "fields": [ - { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ManageTargetPolicyAction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "_SCMProviderFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "author", - "description": null, - "args": [], + "name": "providerId", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "reason", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "streamId", - "description": null, - "args": [], + "name": "name_not", + "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "streamName", - "description": null, - "args": [], + "name": "state", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetSha", - "description": null, - "args": [], + "name": "state_not", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetValue", - "description": null, - "args": [], + "name": "branch", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_BranchFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ManageTargetPolicyAction", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "unset", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "set", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ManageSubscriptionPolicyLog", - "description": null, - "fields": [ - { - "name": "action", - "description": null, - "args": [], + "name": "commits_some", + "description": "", "type": { - "kind": "ENUM", - "name": "ManageSubscriptionPolicyAction", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "author", - "description": null, - "args": [], + "name": "head", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "branch", - "description": null, - "args": [], + "name": "repo", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "owner", - "description": null, - "args": [], + "name": "labels_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_LabelsFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "reason", - "description": null, - "args": [], + "name": "reviews", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "repo", - "description": null, - "args": [], + "name": "reviews_every", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "streamId", - "description": null, - "args": [], + "name": "reviews_in", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "reviews_none", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "streamName", - "description": null, - "args": [], + "name": "reviews_not", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetSha", - "description": null, - "args": [], + "name": "reviews_not_in", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "reviews_single", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "targetValue", - "description": null, - "args": [], + "name": "reviews_some", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_ReviewFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "ManageSubscriptionPolicyAction", - "description": null, + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "description": "", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ignore", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "unignore", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "subscribe", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "pushes_some", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PushesFilter", + "ofType": null + }, + "defaultValue": null }, { - "name": "unsubscribe", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "repo", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "PolicyTargetStream", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_PushesFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "name", - "description": null, - "args": [], + "name": "branch", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this PolicyTargetStream", - "args": [], + "name": "after", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyTarget", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "data", - "description": null, - "args": [], + "name": "before", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "displayName", - "description": null, - "args": [], + "name": "provider", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_ProviderFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "displayValue", - "description": null, - "args": [], + "name": "repo", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_LabelsFilter", + "description": "", + "fields": null, + "inputFields": [ { "name": "name", - "description": null, - "args": [], + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_PushFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "sha", - "description": null, - "args": [], + "name": "branch", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "streams", - "description": null, - "args": [], + "name": "after", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "before", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The ID of this PolicyTarget", - "args": [], + "name": "provider", + "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "_ProviderFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Card", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_WorkflowOrdering", + "description": "Ordering Enum for Workflow", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actionGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", - "ofType": null - } - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CardBody", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "collaborators", - "description": null, - "args": [ - { - "name": "login", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardCollaborator", - "ofType": null - } - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardBody", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "correlations", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardCorrelation", - "ofType": null - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "events", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardEvent", - "ofType": null - } - }, + "name": "workflowId_asc", + "description": "Ascending sort for workflowId", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSets", - "description": null, - "args": [ - { - "name": "goalSetId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardSdmGoalSet", - "ofType": null - } - }, + "name": "workflowId_desc", + "description": "Descending sort for workflowId", "isDeprecated": false, "deprecationReason": null }, { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "provider_asc", + "description": "Ascending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "post", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "provider_desc", + "description": "Descending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "provenance", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardProvenance", - "ofType": null - } - }, + "name": "config_asc", + "description": "Ascending sort for config", "isDeprecated": false, "deprecationReason": null }, { - "name": "reactions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardReaction", - "ofType": null - } - }, + "name": "config_desc", + "description": "Descending sort for config", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_DeletedBranchOrdering", + "description": "Ordering Enum for DeletedBranch", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "repository", - "description": null, - "args": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "slug", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CardRepository", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "shortTitle", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CardTitle", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "ttl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Card", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionGroup", - "description": null, - "fields": [ - { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardAction", - "description": null, + "name": "DeletedBranch", + "description": "DeletedBranch-Node", "fields": [ { - "name": "command", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confirm", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CardActionConfirmation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameterName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameterOptionGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameterOptions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameter", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionConfirmation", - "description": null, - "fields": [ - { - "name": "body", - "description": null, + "name": "id", + "description": "id of DeletedBranch", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "dismiss", - "description": null, + "name": "name", + "description": "name of DeletedBranch", "args": [], "type": { "kind": "SCALAR", @@ -48350,8 +47129,8 @@ "deprecationReason": null }, { - "name": "ok", - "description": null, + "name": "timestamp", + "description": "timestamp of DeletedBranch", "args": [], "type": { "kind": "SCALAR", @@ -48362,122 +47141,358 @@ "deprecationReason": null }, { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], + "name": "repo", + "description": "DeletedBranch repo Repo", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "options", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "ofType": null + "name": "commit", + "description": "DeletedBranch commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameter", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], + "name": "pullRequests", + "description": "DeletedBranch pullRequests PullRequest", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "merged", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "baseBranchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PullRequestOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -48489,138 +47504,91 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardBody", - "description": null, - "fields": [ - { - "name": "avatar", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "login", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "ENUM", + "name": "_GitHubAppResourceUserOrdering", + "description": "Ordering Enum for SCMId", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardCollaborator", - "description": null, + "name": "GitHubAppResourceUser", + "description": "", "fields": [ { - "name": "avatar", - "description": null, + "name": "gitHubAppProvider", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", - "description": null, + "name": "gitHubAppInstallations", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppUserInstallation", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, + "name": "person", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardCorrelation", - "description": null, - "fields": [ + }, { - "name": "body", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CorrelationBody", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -48628,103 +47596,124 @@ "deprecationReason": null }, { - "name": "icon", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", - "description": null, + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shortTitle", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], + "name": "provider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "login", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CorrelationBody", - "description": null, + "name": "GitHubAppUserInstallation", + "description": "", "fields": [ { - "name": "icon", - "description": null, + "name": "installationId", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "permissions", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -48733,28 +47722,17 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardEvent", - "description": null, - "fields": [ + }, { - "name": "actionGroups", - "description": null, + "name": "owner", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -48762,15 +47740,15 @@ "deprecationReason": null }, { - "name": "actions", - "description": null, + "name": "ownerType", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardAction", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, @@ -48778,8 +47756,8 @@ "deprecationReason": null }, { - "name": "icon", - "description": null, + "name": "avatarUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -48788,30 +47766,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -48820,204 +47774,180 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardSdmGoalSet", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_GitHubIdOrdering", + "description": "Ordering Enum for GitHubId", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "duration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSet", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "goals", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardSdmGoal", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_TagFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "state", - "description": null, - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ts", - "description": null, - "args": [], + "name": "commit", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardSdmGoal", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "actions", - "description": null, - "args": [], + "name": "containers", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "description", - "description": null, - "args": [], + "name": "state", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "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": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "link", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "logLink", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageLinked", + "description": "ImageLinked-Node", + "fields": [ { - "name": "name", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, + "name": "timestamp", + "description": "timestamp of ImageLinked", "args": [], "type": { "kind": "SCALAR", @@ -49028,35 +47958,86 @@ "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], + "name": "image", + "description": "ImageLinked image DockerImage", + "args": [ + { + "name": "image", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "DockerImage", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardProvenance", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, - "args": [], + "name": "commit", + "description": "ImageLinked commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, @@ -49069,517 +48050,375 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardReaction", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_ReleaseOrdering", + "description": "Ordering Enum for Release", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "avatar", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "reaction", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardRepository", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardTitle", - "description": null, - "fields": [ + }, { - "name": "icon", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Notification", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_TeamOrdering", + "description": "Ordering Enum for Team", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationAction", - "ofType": null - } - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "contentType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "correlationId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "post", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "recipient", - "description": null, - "args": [ - { - "name": "address", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "NotificationRecipient", - "ofType": null - }, + "name": "description_asc", + "description": "Ascending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "description_desc", + "description": "Descending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "ttl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "iconUrl_asc", + "description": "Ascending sort for iconUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Notification", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "NotificationAction", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_CheckSuiteFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "command", - "description": null, - "args": [], + "name": "commit", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "parameterName", - "description": null, - "args": [], + "name": "conclusion", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CheckSuiteConclusion", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "parameterOptionGroups", - "description": null, - "args": [], + "name": "status", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", - "ofType": null - } + "kind": "ENUM", + "name": "CheckSuiteStatus", + "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_CheckRunOrdering", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "startedAt_asc", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "parameterOptions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOption", - "ofType": null - } - }, + "name": "startedAt_desc", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "parameters", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameter", - "ofType": null - } - }, + "name": "completedAt_asc", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", - "description": null, - "args": [], + "name": "completedAt_desc", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_CheckRunFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "checkSuite", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CheckSuiteFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "role", - "description": null, - "args": [], + "name": "conclusion", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CheckRunConclusion", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "text", - "description": null, - "args": [], + "name": "status", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CheckRunStatus", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "type", - "description": null, - "args": [], + "name": "action", + "description": "", + "type": { + "kind": "ENUM", + "name": "CheckRunAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_PushImpactOrdering", + "description": "Ordering Enum for PushImpact", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "options", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOption", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "NotificationActionParameterOption", - "description": null, + "name": "PushImpact", + "description": "PushImpact-Node", "fields": [ { - "name": "name", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "id", + "description": "id of PushImpact", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationActionParameter", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "url", + "description": "url of PushImpact", "args": [], "type": { "kind": "SCALAR", @@ -49590,8 +48429,8 @@ "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "data", + "description": "data of PushImpact", "args": [], "type": { "kind": "SCALAR", @@ -49600,30 +48439,46 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationRecipient", - "description": null, - "fields": [ + }, { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "push", + "description": "PushImpact push Push", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -49636,21 +48491,57 @@ }, { "kind": "ENUM", - "name": "AspectRegistrationState", - "description": null, + "name": "_PullRequestImpactOrdering", + "description": "Ordering Enum for PullRequestImpact", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "Disabled", - "description": null, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "Enabled", - "description": 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 } @@ -49659,36 +48550,36 @@ }, { "kind": "OBJECT", - "name": "AspectRegistration", - "description": null, + "name": "PullRequestImpact", + "description": "PullRequestImpact-Node", "fields": [ { - "name": "category", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "id", + "description": "id of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayName", - "description": null, + "name": "url", + "description": "url of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", @@ -49699,8 +48590,8 @@ "deprecationReason": null }, { - "name": "endpoint", - "description": null, + "name": "data", + "description": "data of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", @@ -49711,96 +48602,326 @@ "deprecationReason": null }, { - "name": "manageable", - "description": null, - "args": [], + "name": "pullRequest", + "description": "PullRequestImpact pullRequest PullRequest", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "merged", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "baseBranchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "PullRequest", "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": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "shortName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "AspectRegistrationState", - "ofType": null - }, + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "unit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "url_desc", + "description": "Descending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "providerId_asc", + "description": "Ascending sort for providerId", "isDeprecated": false, "deprecationReason": null }, { - "name": "uuid", - "description": 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": "_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": "OBJECT", + "name": "UserJoinedChannel", + "description": "UserJoinedChannel-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -49808,7 +48929,7 @@ }, { "name": "id", - "description": "The ID of this AspectRegistration", + "description": "id of UserJoinedChannel", "args": [], "type": { "kind": "SCALAR", @@ -49817,325 +48938,257 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "fields": [ + }, { - "name": "registerSkill", - "description": "", + "name": "user", + "description": "UserJoinedChannel user ChatId", "args": [ { - "name": "skill", + "name": "id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AtomistSkill", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeSkillConfiguration", - "description": "", - "args": [ + }, { - "name": "configurationName", + "name": "screenName", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "provider", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "version", + "name": "isAtomistBot", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AtomistSkills", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "saveSkillConfiguration", - "description": "", - "args": [ + }, { - "name": "configuration", + "name": "isOwner", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillConfigurationInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "isPrimaryOwner", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "isAdmin", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "oldName", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "version", + "name": "timezoneLabel", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "AtomistSkills", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shareSkill", - "description": "", + "name": "channel", + "description": "UserJoinedChannel channel ChatChannel", "args": [ { - "name": "name", + "name": "id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "name", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "teamIds", + "name": "provider", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "version", + "name": "normalizedName", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AtomistSkill", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setTeamConfiguration", - "description": "# Team/Workspace configuration ##", - "args": [ + }, { - "name": "name", + "name": "channelId", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "value", + "name": "isDefault", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ttlSecs", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "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": "DockerRegistryType", + "description": "Deprecated", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "JFrog", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DockerHub", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DockerRegistryProvider", + "description": "Deprecated. Use explicit types. This is the legacy ResourceProvider type. ", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamConfiguration", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50143,149 +49196,103 @@ "deprecationReason": null }, { - "name": "deleteTeamConfiguration", + "name": "type", "description": "", - "args": [ - { - "name": "namespace", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "TeamConfiguration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "disableRegistration", + "name": "url", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistRegistration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableRegistration", + "name": "_typenames", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistRegistration", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createDockerRegistryProvider", - "description": "Creates a new docker registry provider", - "args": [ - { - "name": "type", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DockerRegistryType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "Team", "ofType": null } }, @@ -50293,54 +49300,62 @@ "deprecationReason": null }, { - "name": "createGenericResourceProvider", + "name": "authProviderId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", "description": "", "args": [ { - "name": "type", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "GenericResourceProvider", + "name": "Webhook", "ofType": null } }, @@ -50348,243 +49363,100 @@ "deprecationReason": null }, { - "name": "createKubernetesClusterProvider", + "name": "createdAt", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createBinaryRepositoryProvider", + "name": "updatedBy", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BinaryRepositoryType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "OBJECT", - "name": "BinaryRepositoryProvider", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createGHEAppResourceProvider", + "name": "metadata", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "authProviderId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "private", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "applicationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "applicationName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "createGitHubComAppResourceProvider", + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "description": "", + "fields": [ + { + "name": "url", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50592,15 +49464,15 @@ "deprecationReason": null }, { - "name": "createGitHubResourceProvider", - "description": "Creates SCMProvider for github.com with a bunch of defaults", + "name": "namespace", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50608,96 +49480,15 @@ "deprecationReason": null }, { - "name": "createGHEResourceProvider", + "name": "registryName", "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "authProviderId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "private", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50705,44 +49496,15 @@ "deprecationReason": null }, { - "name": "configureGitHubResourceProvider", - "description": "configure repos/orgs - raise system event for SCMProvider", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "config", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_typenames", + "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50750,40 +49512,15 @@ "deprecationReason": null }, { - "name": "setResourceProviderState", + "name": "_id", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerState", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceProviderStateInput", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -50791,40 +49528,15 @@ "deprecationReason": null }, { - "name": "setSCMProviderState", + "name": "id", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerState", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "SCMProviderStateInput", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50832,24 +49544,9 @@ "deprecationReason": null }, { - "name": "deleteResourceProvider", + "name": "name", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -50863,58 +49560,15 @@ "deprecationReason": null }, { - "name": "setCredential", + "name": "team", "description": "", - "args": [ - { - "name": "providerId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceUserId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "credential", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CredentialInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -50922,75 +49576,62 @@ "deprecationReason": null }, { - "name": "linkCredentialToResourceProvider", + "name": "authProviderId", "description": "", - "args": [ - { - "name": "resourceProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "credentialId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkGitHubAppInstallation", - "description": "Links a GitHubAppInstallation to the provider as an Org", + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", + "description": "", "args": [ { "name": "id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppInstallation", + "name": "Webhook", "ofType": null } }, @@ -50998,44 +49639,15 @@ "deprecationReason": null }, { - "name": "createGitHubAppInstallation", + "name": "createdAt", "description": "", - "args": [ - { - "name": "resourceProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "installationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GitHubAppInstallation", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51043,24 +49655,9 @@ "deprecationReason": null }, { - "name": "disconnectGitHubAppOrg", + "name": "updatedAt", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -51074,24 +49671,45 @@ "deprecationReason": null }, { - "name": "deleteOrg", + "name": "createdBy", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -51105,24 +49723,55 @@ "deprecationReason": null }, { - "name": "deleteRepo", + "name": "dockerImages", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "DockerRegistryImage", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "description": "", + "fields": [ + { + "name": "url", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -51136,7 +49785,7 @@ "deprecationReason": null }, { - "name": "deleteAllFingerprints", + "name": "registryHost", "description": "", "args": [], "type": { @@ -51152,24 +49801,9 @@ "deprecationReason": null }, { - "name": "deleteAspectFingerprints", + "name": "projectId", "description": "", - "args": [ - { - "name": "featureName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -51183,30 +49817,15 @@ "deprecationReason": null }, { - "name": "createWebhook", - "description": "create and expose a webhook over the public internet", - "args": [ - { - "name": "webhook", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "registryName", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51214,26 +49833,11 @@ "deprecationReason": null }, { - "name": "deleteWebhook", - "description": "delete a webhook from public internet", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_typenames", + "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -51245,44 +49849,15 @@ "deprecationReason": null }, { - "name": "updateWebhook", - "description": "associate some state with a webhook to help convergence etc", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhook", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -51290,58 +49865,15 @@ "deprecationReason": null }, { - "name": "addWebhookTag", - "description": "add (or overwrite) a tag on a webhook", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -51349,58 +49881,15 @@ "deprecationReason": null }, { - "name": "setWebhookTags", + "name": "name", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51408,30 +49897,15 @@ "deprecationReason": null }, { - "name": "removeChatTeam", - "description": "Removes a ChatTeam and associated nodes from the graph", - "args": [ - { - "name": "chatTeamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -51439,238 +49913,94 @@ "deprecationReason": null }, { - "name": "createResourceUser", - "description": "### Users ####", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "resourceUserType", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceUserType", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "authProviderId", + "description": "", + "args": [], "type": { - "kind": "INTERFACE", - "name": "ResourceUser", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkResourceUser", + "name": "state", "description": "", - "args": [ - { - "name": "resourceUserId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], "type": { "kind": "INTERFACE", - "name": "ResourceUser", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMOrgs", - "description": "### RCCA SCM Ingestion Mutations ####", + "name": "webhooks", + "description": "", "args": [ { - "name": "scmProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "scmOrgsInput", + "name": "id", "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMOrgsInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } + "kind": "OBJECT", + "name": "Webhook", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMRepos", + "name": "createdAt", "description": "", - "args": [ - { - "name": "scmProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "scmReposInput", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMReposInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMCommit", + "name": "updatedAt", "description": "", - "args": [ - { - "name": "scmProviderId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "scmCommitInput", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMCommitInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Commit", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51678,624 +50008,219 @@ "deprecationReason": null }, { - "name": "deleteFingerprints", - "description": "Delete all fingerprints for this team matching supplied query", - "args": [ - { - "name": "branchId", - "description": "Restrict to this particular branch in repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "Restrict to this particular name within type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "Restrict to this particular repo", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": "Restrict to this particular type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "createdBy", + "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setCommitFingerprints", - "description": "Set the fingerprints of a commit", - "args": [ - { - "name": "add", - "description": "List of new fingerprints added by this commit", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FingerprintInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "branchId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commitSha", - "description": "The sha of the the commit", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isDefaultBranch", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isHeadCommit", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "Id of the repo in the graph", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": "The type of this fingerprint e.g. package.json-deps", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setFingerprintTarget", + "name": "metadata", "description": "", - "args": [ - { - "name": "target", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FingerprintTargetInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { "kind": "OBJECT", - "name": "FingerprintTarget", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addAtmJobTasks", - "description": "Add tasks to existing job, provided the job is in a preparing state.", - "args": [ - { - "name": "jobId", - "description": "The id of the job", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobTasks", - "description": "The tasks for the job", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmJobTaskInput", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createAtmJob", - "description": "Create a new AtmJob", - "args": [ - { - "name": "jobInput", - "description": "The AtmJobInput for the AtmJob you are creating", - "type": { + "name": "dockerImages", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmJobInput", + "kind": "OBJECT", + "name": "DockerRegistryImage", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null }, { - "name": "resumeAtmJob", - "description": "Re-trigger tasks for a job that have not completed", - "args": [ - { - "name": "jobId", - "description": "The id of the job", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "description": "", + "fields": [ + { + "name": "url", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setAtmJobTaskState", - "description": "Set the state on a AtmJobTask", - "args": [ - { - "name": "id", - "description": "The id of the AtmJobTask to set the state of", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "jobTaskState", - "description": "The state to set", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmJobTaskStateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "registryName", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "takeTasks", - "description": "Take tasks to work on", - "args": [ - { - "name": "taskRequest", - "description": "The request for tasks", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmTaskRequest", - "ofType": null - } - }, - "defaultValue": null + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkSlackChannelToRepo", + "name": "id", "description": "", - "args": [ - { - "name": "channelId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "channelName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatTeamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "ChannelLinked", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unlinkSlackChannelFromRepo", + "name": "name", "description": "", - "args": [ - { - "name": "channelId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "chatTeamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "ChannelLinked", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ingestCustomCommitIssueRelationship", - "description": "Auto-generated ingestion mutation for CommitIssueRelationship", - "args": [ - { - "name": "value", - "description": "The instance of CommitIssueRelationship to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomDeployment", - "description": "Auto-generated ingestion mutation for Deployment", - "args": [ - { - "name": "value", - "description": "The instance of Deployment to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomIssueRelationship", - "description": "Auto-generated ingestion mutation for IssueRelationship", - "args": [ - { - "name": "value", - "description": "The instance of IssueRelationship to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "authProviderId", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -52305,510 +50230,327 @@ "deprecationReason": null }, { - "name": "ingestCustomSdmGoal", - "description": "Auto-generated ingestion mutation for SdmGoal", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoal to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoalSet", - "description": "Auto-generated ingestion mutation for SdmGoalSet", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoalSet to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoalDisplay", - "description": "Auto-generated ingestion mutation for SdmGoalDisplay", + "name": "webhooks", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmGoalDisplay to ingest", + "name": "id", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDisplayInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmBuildIdentifier", - "description": "Auto-generated ingestion mutation for SdmBuildIdentifier", - "args": [ - { - "name": "value", - "description": "The instance of SdmBuildIdentifier to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmDeployEnablement", - "description": "Auto-generated ingestion mutation for SdmDeployEnablement", - "args": [ - { - "name": "value", - "description": "The instance of SdmDeployEnablement to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmVersion", - "description": "Auto-generated ingestion mutation for SdmVersion", - "args": [ - { - "name": "value", - "description": "The instance of SdmVersion to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoalSetBadge", - "description": "Auto-generated ingestion mutation for SdmGoalSetBadge", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoalSetBadge to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmPreference", - "description": "Auto-generated ingestion mutation for SdmPreference", - "args": [ - { - "name": "value", - "description": "The instance of SdmPreference to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmPreferenceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "metadata", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmRepoProvenance", - "description": "Auto-generated ingestion mutation for SdmRepoProvenance", - "args": [ - { - "name": "value", - "description": "The instance of SdmRepoProvenance to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepoProvenanceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomPolicyLog", - "description": "Auto-generated ingestion mutation for PolicyLog", - "args": [ - { - "name": "value", - "description": "The instance of PolicyLog to ingest", - "type": { + "name": "dockerImages", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", + "kind": "OBJECT", + "name": "DockerRegistryImage", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "ingestCustomPolicyCompliance", - "description": "Auto-generated ingestion mutation for PolicyCompliance", - "args": [ - { - "name": "value", - "description": "The instance of PolicyCompliance to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_DockerRegistryImageFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "commit", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ingestCustomPolicyTargetStream", - "description": "Auto-generated ingestion mutation for PolicyTargetStream", - "args": [ - { - "name": "value", - "description": "The instance of PolicyTargetStream to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetStreamInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "imageName_starts_with", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "ingestCustomPolicyTarget", - "description": "Auto-generated ingestion mutation for PolicyTarget", - "args": [ - { - "name": "value", - "description": "The instance of PolicyTarget to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "imageName_not_starts_with", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSkillOutput", - "description": "Auto-generated ingestion mutation for SkillOutput", - "args": [ - { - "name": "value", - "description": "The instance of SkillOutput to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSkillOutputInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomCard", - "description": "Auto-generated ingestion mutation for Card", - "args": [ - { - "name": "value", - "description": "The instance of Card to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_typenames", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomNotification", - "description": "Auto-generated ingestion mutation for Notification", - "args": [ - { - "name": "value", - "description": "The instance of Notification to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomAspectRegistration", - "description": "Auto-generated ingestion mutation for AspectRegistration", - "args": [ - { - "name": "value", - "description": "The instance of AspectRegistration to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomAspectRegistrationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomCommitIssueRelationship", - "description": "Auto-generated deletion mutation for CommitIssueRelationship", - "args": [ - { - "name": "value", - "description": "The instance of CommitIssueRelationship to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomDeployment", - "description": "Auto-generated deletion mutation for Deployment", - "args": [ - { - "name": "value", - "description": "The instance of Deployment to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "authProviderId", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -52818,402 +50560,241 @@ "deprecationReason": null }, { - "name": "deleteCustomIssueRelationship", - "description": "Auto-generated deletion mutation for IssueRelationship", - "args": [ - { - "name": "value", - "description": "The instance of IssueRelationship to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoal", - "description": "Auto-generated deletion mutation for SdmGoal", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoal to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSet", - "description": "Auto-generated deletion mutation for SdmGoalSet", + "name": "webhooks", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmGoalSet to delete", + "name": "id", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalDisplay", - "description": "Auto-generated deletion mutation for SdmGoalDisplay", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoalDisplay to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDisplayInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmBuildIdentifier", - "description": "Auto-generated deletion mutation for SdmBuildIdentifier", - "args": [ - { - "name": "value", - "description": "The instance of SdmBuildIdentifier to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmDeployEnablement", - "description": "Auto-generated deletion mutation for SdmDeployEnablement", - "args": [ - { - "name": "value", - "description": "The instance of SdmDeployEnablement to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmVersion", - "description": "Auto-generated deletion mutation for SdmVersion", - "args": [ - { - "name": "value", - "description": "The instance of SdmVersion to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSetBadge", - "description": "Auto-generated deletion mutation for SdmGoalSetBadge", - "args": [ - { - "name": "value", - "description": "The instance of SdmGoalSetBadge to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "metadata", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "deleteCustomSdmPreference", - "description": "Auto-generated deletion mutation for SdmPreference", - "args": [ - { - "name": "value", - "description": "The instance of SdmPreference to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmPreferenceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmRepoProvenance", - "description": "Auto-generated deletion mutation for SdmRepoProvenance", - "args": [ - { - "name": "value", - "description": "The instance of SdmRepoProvenance to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepoProvenanceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyLog", - "description": "Auto-generated deletion mutation for PolicyLog", - "args": [ - { - "name": "value", - "description": "The instance of PolicyLog to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_typenames", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyCompliance", - "description": "Auto-generated deletion mutation for PolicyCompliance", - "args": [ - { - "name": "value", - "description": "The instance of PolicyCompliance to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetStream", - "description": "Auto-generated deletion mutation for PolicyTargetStream", - "args": [ - { - "name": "value", - "description": "The instance of PolicyTargetStream to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetStreamInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyTarget", - "description": "Auto-generated deletion mutation for PolicyTarget", - "args": [ - { - "name": "value", - "description": "The instance of PolicyTarget to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSkillOutput", - "description": "Auto-generated deletion mutation for SkillOutput", - "args": [ - { - "name": "value", - "description": "The instance of SkillOutput to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSkillOutputInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "authProviderId", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -53223,375 +50804,241 @@ "deprecationReason": null }, { - "name": "deleteCustomCard", - "description": "Auto-generated deletion mutation for Card", - "args": [ - { - "name": "value", - "description": "The instance of Card to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomNotification", - "description": "Auto-generated deletion mutation for Notification", - "args": [ - { - "name": "value", - "description": "The instance of Notification to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomAspectRegistration", - "description": "Auto-generated deletion mutation for AspectRegistration", + "name": "webhooks", + "description": "", "args": [ { - "name": "value", - "description": "The instance of AspectRegistration to delete", + "name": "id", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomAspectRegistrationInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomCommitIssueRelationshipById", - "description": "Auto-generated delete-by-id mutation for CommitIssueRelationship", - "args": [ - { - "name": "id", - "description": "The id of the CommitIssueRelationship to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomDeploymentById", - "description": "Auto-generated delete-by-id mutation for Deployment", - "args": [ - { - "name": "id", - "description": "The id of the Deployment to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomIssueRelationshipById", - "description": "Auto-generated delete-by-id mutation for IssueRelationship", - "args": [ - { - "name": "id", - "description": "The id of the IssueRelationship to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalById", - "description": "Auto-generated delete-by-id mutation for SdmGoal", - "args": [ - { - "name": "id", - "description": "The id of the SdmGoal to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSetById", - "description": "Auto-generated delete-by-id mutation for SdmGoalSet", - "args": [ - { - "name": "id", - "description": "The id of the SdmGoalSet to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "metadata", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "deleteCustomSdmGoalDisplayById", - "description": "Auto-generated delete-by-id mutation for SdmGoalDisplay", - "args": [ - { - "name": "id", - "description": "The id of the SdmGoalDisplay to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "description": "", + "fields": [ + { + "name": "url", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmBuildIdentifierById", - "description": "Auto-generated delete-by-id mutation for SdmBuildIdentifier", - "args": [ - { - "name": "id", - "description": "The id of the SdmBuildIdentifier to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmDeployEnablementById", - "description": "Auto-generated delete-by-id mutation for SdmDeployEnablement", - "args": [ - { - "name": "id", - "description": "The id of the SdmDeployEnablement to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmVersionById", - "description": "Auto-generated delete-by-id mutation for SdmVersion", - "args": [ - { - "name": "id", - "description": "The id of the SdmVersion to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "name", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSetBadgeById", - "description": "Auto-generated delete-by-id mutation for SdmGoalSetBadge", - "args": [ - { - "name": "id", - "description": "The id of the SdmGoalSetBadge to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmPreferenceById", - "description": "Auto-generated delete-by-id mutation for SdmPreference", - "args": [ - { - "name": "id", - "description": "The id of the SdmPreference to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "authProviderId", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -53601,299 +51048,172 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmRepoProvenanceById", - "description": "Auto-generated delete-by-id mutation for SdmRepoProvenance", - "args": [ - { - "name": "id", - "description": "The id of the SdmRepoProvenance to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyLogById", - "description": "Auto-generated delete-by-id mutation for PolicyLog", - "args": [ - { - "name": "id", - "description": "The id of the PolicyLog to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyComplianceById", - "description": "Auto-generated delete-by-id mutation for PolicyCompliance", + "name": "webhooks", + "description": "", "args": [ { "name": "id", - "description": "The id of the PolicyCompliance to delete", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetStreamById", - "description": "Auto-generated delete-by-id mutation for PolicyTargetStream", - "args": [ - { - "name": "id", - "description": "The id of the PolicyTargetStream to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetById", - "description": "Auto-generated delete-by-id mutation for PolicyTarget", - "args": [ - { - "name": "id", - "description": "The id of the PolicyTarget to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedAt", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSkillOutputById", - "description": "Auto-generated delete-by-id mutation for SkillOutput", - "args": [ - { - "name": "id", - "description": "The id of the SkillOutput to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "createdBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomCardById", - "description": "Auto-generated delete-by-id mutation for Card", - "args": [ - { - "name": "id", - "description": "The id of the Card to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "updatedBy", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomNotificationById", - "description": "Auto-generated delete-by-id mutation for Notification", - "args": [ - { - "name": "id", - "description": "The id of the Notification to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "metadata", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomAspectRegistrationById", - "description": "Auto-generated delete-by-id mutation for AspectRegistration", - "args": [ - { - "name": "id", - "description": "The id of the AspectRegistration to delete", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null }, { - "name": "setChatUserPreference", - "description": "Set the value of a user preference.", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatUserId", - "description": "The id of user", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "MavenRepositoryProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "MavenRepositoryProvider", + "description": "", + "fields": [ + { + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UserPreference", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -53901,46 +51221,15 @@ "deprecationReason": null }, { - "name": "setChatTeamPreference", - "description": "Set the value of a chat team preference. Returns what was set", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamPreference", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -53948,393 +51237,269 @@ "deprecationReason": null }, { - "name": "createSlackChannel", - "description": "Create a slack channel in the current team", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the channel to create", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "url", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addBotToSlackChannel", - "description": "Ask the bot to join a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "name", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inviteUserToSlackChannel", - "description": "Ask the bot to invite a user to join a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "The id of the user to invite", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "timestamp", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kickUserFromSlackChannel", - "description": "Ask the bot to kick a user from a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "The id of the user", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setOwnerLogin", - "description": "set a GitHub login to be used for resources owned by an Org", - "args": [ - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "team", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "description": "", + "fields": [ + { + "name": "url", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "OwnerLogin", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setRepoLogin", - "description": "set a GitHub login to be used for this Repository", - "args": [ - { - "name": "repo", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "scope", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "RepoLogin", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setTeamProperties", - "description": "Set a team's properties", - "args": [ - { - "name": "name", - "description": "The display name of the team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "The description of the team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "iconUrl", - "description": "URL to a teams icon", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "credential", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillInput", - "description": "Start: registration inputs", - "fields": null, - "inputFields": [ + }, { - "name": "artifacts", + "name": "_typenames", "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillArtifactInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "author", + "name": "_id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branchId", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "categories", + "name": "name", "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillCategoryKey", - "ofType": null - } + "kind": "OBJECT", + "name": "Team", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commands", + "name": "authProviderId", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistChatCommandInput", - "ofType": null - } + "kind": "OBJECT", + "name": "Webhook", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commitSha", + "name": "createdAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54344,11 +51509,13 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "updatedAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54358,45 +51525,71 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dispatchStyle", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "ENUM", - "name": "AtomistSkillEventDispatchStyle", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "updatedBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "homepageUrl", + "name": "metadata", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null }, { - "name": "iconUrl", + "kind": "INTERFACE", + "name": "NpmRegistryProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "description": "", + "fields": [ + { + "name": "url", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54406,43 +51599,41 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ingesters", + "name": "scope", "description": "", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "license", + "name": "gitHubAppInstallation", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppInstallation", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "longDescription", + "name": "installationId", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54452,13 +51643,27 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "credential", "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -54466,103 +51671,124 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "namespace", + "name": "_id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameters", + "name": "id", "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillParameterSpecInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "readme", + "name": "name", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoId", + "name": "team", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "subscriptions", + "name": "authProviderId", "description": "", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "technologies", + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "webhooks", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillTechnology", - "ofType": null - } + "kind": "OBJECT", + "name": "Webhook", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", + "name": "createdAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54572,32 +51798,13 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "videoUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillArtifactInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "entryPoint", + "name": "updatedAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54607,61 +51814,120 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "kind", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillArtifactKind", - "ofType": null - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "memory", + "name": "updatedBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "runtime", + "name": "metadata", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillRuntime", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null }, { - "name": "timeout", + "kind": "INTERFACE", + "name": "NpmRegistryProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_ResourceProviderOrdering", + "description": "Ordering Enum for ResourceProvider", + "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": "OBJECT", + "name": "GenericResourceUser", + "description": "", + "fields": [ + { + "name": "person", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -54669,60 +51935,80 @@ "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistChatCommandInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "description", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "_id", "description": "", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "pattern", + "name": "login", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54732,133 +52018,174 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillParameterSpecInput", + "kind": "OBJECT", + "name": "SystemAccount", "description": "", - "fields": null, - "inputFields": [ - { - "name": "boolean", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillBooleanParameterSpecInput", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "float", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillFloatParameterSpecInput", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "int", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillIntParameterSpecInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "multiChoice", + "name": "id", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillMultiChoiceParameterSpecInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoFilter", + "name": "_id", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFilterParameterSpecInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "schedule", + "name": "credential", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillScheduleParameterSpecInput", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "singleChoice", + "name": "provider", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillSingleChoiceParameterSpecInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "string", + "name": "login", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringParameterSpecInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "stringArray", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringArrayParameterSpecInput", - "ofType": null - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillBooleanParameterSpecInput", + "kind": "OBJECT", + "name": "Password", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "defaultValue", + "name": "owner", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "secret", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54868,70 +52195,78 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "_id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillFloatParameterSpecInput", + "kind": "OBJECT", + "name": "GenericResourceProvider", "description": "", - "fields": null, - "inputFields": [ - { - "name": "defaultValue", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "description", + "name": "name", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -54941,43 +52276,59 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "type", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maximum", + "name": "providerId", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "minimum", + "name": "url", "description": "", + "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -54985,167 +52336,140 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "placeHolder", + "name": "_id", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillIntParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "defaultValue", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "team", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "authProviderId", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maximum", + "name": "state", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "minimum", + "name": "credential", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "webhooks", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Webhook", "ofType": null } }, - "defaultValue": null - }, - { - "name": "placeHolder", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "createdAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillMultiChoiceParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "defaultValues", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "updatedAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55155,108 +52479,89 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maxRequired", + "name": "updatedBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "minRequired", + "name": "metadata", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "options", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillChoiceInput", - "ofType": null - } - } - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "required", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillChoiceInput", + "kind": "ENUM", + "name": "BinaryRepositoryType", "description": "", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "description", + "name": "maven2", "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", + "name": "npm", "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55266,36 +52571,29 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "type", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BinaryRepositoryType", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFilterParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "description", + "name": "providerId", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55305,23 +52603,27 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "url", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -55329,119 +52631,124 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "_id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillScheduleParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "defaultValue", + "name": "id", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "team", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "authProviderId", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "state", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "credential", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "INTERFACE", + "name": "Credential", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillSingleChoiceParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "defaultValue", + "name": "webhooks", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "createdAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55451,21 +52758,13 @@ "ofType": null } }, - "defaultValue": null - }, - { - "name": "displayName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "updatedAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55475,64 +52774,66 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "options", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillChoiceInput", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "updatedBy", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadata", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceProviderMetadata", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringParameterSpecInput", + "kind": "OBJECT", + "name": "SecretProvider", "description": "", - "fields": null, - "inputFields": [ - { - "name": "defaultValue", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "fields": [ { - "name": "description", + "name": "name", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55542,127 +52843,140 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "_typenames", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "lineStyle", + "name": "_id", "description": "", + "args": [], "type": { - "kind": "ENUM", - "name": "AtomistSkillStringParameterLineStyle", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "pattern", + "name": "team", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "placeHolder", + "name": "authProviderId", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "required", + "name": "state", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtomistSkillStringParameterLineStyle", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "single", - "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "multiple", + "name": "credential", "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringArrayParameterSpecInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "defaultValue", + "name": "webhooks", "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Webhook", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "createdAt", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55672,104 +52986,106 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "updatedAt", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maxAllowed", + "name": "createdBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "minRequired", + "name": "updatedBy", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Person", "ofType": null }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "pattern", + "name": "metadata", "description": "", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderMetadata", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "name": "required", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillConfigurationInput", - "description": "Configuration inputs", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CommitFingerprintImpact", + "description": "", + "fields": [ { - "name": "enabled", + "name": "diffs", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FingerprintDiff", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -55779,123 +53095,134 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameters", + "name": "offTarget", "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillParameterInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } } } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillParameterInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "boolean", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillBooleanParameterInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "float", + "name": "branch", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillFloatParameterInput", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "int", + "name": "commit", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillIntParameterInput", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "multiChoice", + "name": "previousCommit", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillMultiChoiceParameterInput", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoFilter", + "name": "repo", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFiltersInput", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FingerprintDiff", + "description": "", + "fields": [ { - "name": "schedule", + "name": "from", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillScheduleInput", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "singleChoice", + "name": "to", "description": "", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillSingleChoiceParameterInput", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, - "defaultValue": null - }, - { - "name": "string", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringParameterInput", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PagingInfoInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "stringArray", + "name": "after", "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringArrayParameterInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -55906,292 +53233,388 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillBooleanParameterInput", + "kind": "OBJECT", + "name": "CommitsWithFingerprints", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "_paging", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "PagingInfo", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "commits", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FingerprintedCommit", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillFloatParameterInput", + "kind": "OBJECT", + "name": "PagingInfo", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "after", + "description": "If present, indicates that there are more results", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FingerprintedCommit", + "description": "A commit", + "fields": [ + { + "name": "analysis", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "isDefaultBranch", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Branch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillIntParameterInput", + "kind": "OBJECT", + "name": "FingerprintAggregates", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", - "description": "", + "name": "inRepos", + "description": "How many repos contain this fingeprint type/name?", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": "", + "name": "latestSemVerAvailable", + "description": "Latest semver available if the SourceFingerprint supports it", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillMultiChoiceParameterInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", + "name": "latestSemVerUsed", + "description": "Latest semver used if the SourceFingerprint supports it", + "args": [], + "type": { + "kind": "OBJECT", + "name": "SourceFingerprintStats", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mostFrequentlyUsed", + "description": "Which value/sha has been most frequently seen?", + "args": [], + "type": { + "kind": "OBJECT", + "name": "SourceFingerprintStats", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mostRecentlyUsed", + "description": "Which value/sha has been most recently seen?", + "args": [], + "type": { + "kind": "OBJECT", + "name": "SourceFingerprintStats", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalRepos", + "description": "How many repos have been seen in total?", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": "", + "name": "totalVariants", + "description": "How many different values/shas are there for this type/name?", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFiltersInput", + "kind": "OBJECT", + "name": "SourceFingerprintStats", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "fingerprint", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": "", + "name": "inRepos", + "description": "How many repos has this fingerprint been seen in?", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFiltersValueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFiltersValueInput", + "kind": "OBJECT", + "name": "FingerprintTarget", "description": "", - "fields": null, - "inputFields": [ - { - "name": "excludes", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFilterInput", - "ofType": null - } - } - }, - "defaultValue": null - }, + "fields": [ { - "name": "includes", + "name": "fingerprint", "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFilterInput", - "ofType": null - } + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillRepoFilterInput", + "kind": "OBJECT", + "name": "FingerprintCounts", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "ownerId", + "name": "count", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "providerId", + "name": "mostFrequentlyUsed", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoIds", + "name": "mostRecentlyUsed", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56202,82 +53625,71 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintTypeCount", "ofType": null } } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillScheduleInput", + "kind": "OBJECT", + "name": "FingerprintTypeCount", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "count", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillSingleChoiceParameterInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "names", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FinterprintNameCount", + "ofType": null + } + } } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "type", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56287,36 +53699,40 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringParameterInput", + "kind": "OBJECT", + "name": "FinterprintNameCount", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "count", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "name", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56326,138 +53742,87 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillStringArrayParameterInput", - "description": "", + "kind": "ENUM", + "name": "AtmJobState", + "description": "The state of an AtmJob", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "preparing", "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "running", "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "orgs", + "name": "completed", "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repos", + "name": "timedout", "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderRepoInput", - "ofType": null - } - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderRepoInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "AtmJob", + "description": "A AtmJob, made up of many AtmJobTasks", + "fields": [ { - "name": "owner", - "description": "", + "name": "completedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJob was considered complete (when all tasks were complete)", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedCount", + "description": "The number of AtmJobTasks on this AtmJob that are in a completed state", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": "", + "name": "createdAt", + "description": "An ISO8601 timestamp generated by the API when the AtmJob is created", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56467,195 +53832,165 @@ "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceProviderStateInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "state", - "description": "", + "name": "data", + "description": "Used to store additional information about this AtmJob", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceProviderStateName", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "name": "description", + "description": "A description for this AtmJob", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SCMProviderStateInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "state", - "description": "", + "name": "id", + "description": "The ID of this AtmJob. Generated by the API.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "SCMProviderStateName", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "name": "jobCount", + "description": "The number of AtmJobTasks that make up this job", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SCMProviderStateName", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "converged", - "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "unconverged", - "description": "", + "name": "jobTasks", + "description": "A list of AtmJobTasks that make up this job", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "misconfigured", - "description": "", + "name": "maxRunningTasks", + "description": "The maximum number of running (in-flight) tasks. By default, all tasks will be in-flight from the time the job is created.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unauthorized", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CredentialInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "type", - "description": "", + "name": "name", + "description": "A name for this AtmJob", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CredentialType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oauth", - "description": "", + "name": "owner", + "description": "The owner of this job. Clients may use this in a subscription to avoid all clients subscribing to all tasks in a team.", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "OAuthInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", - "description": "", + "name": "state", + "description": "The AtmJobState of this AtmJob", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PasswordInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobState", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CredentialType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "OAuthToken", - "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "Password", - "description": "", + "name": "taskCount", + "description": "The number of AtmJobTasks that make up this job", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OAuthInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "secret", - "description": "", + "name": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJob is updated", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56665,44 +54000,52 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "scopes", + "name": "team", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Team", + "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PasswordInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "AtmJobTask", + "description": "A Task that makes up part of a AtmJob", + "fields": [ { - "name": "secret", - "description": "", + "name": "completedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask was considered complete", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": "An ISO8601 timestamp generated by the API when the AtmJobTask is created", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56712,111 +54055,87 @@ "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", + "name": "data", + "description": "Used to store additional information about this AtmJobTask", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this AtmJobTask. Generated by the API.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "resourceProviderId", - "description": "", + "name": "isCompleted", + "description": "Is true if the task is in a completed state", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "authType", - "description": "", + "name": "job", + "description": "The owning job", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", + "kind": "OBJECT", + "name": "AtmJob", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hmacSha1", - "description": "", + "name": "message", + "description": "Used to store additional information about the state of this AtmJobTask", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "HmacSha1AuthInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "tags", - "description": "", + "name": "name", + "description": "A name for this AtmJobTask", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "WebhookState", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HmacSha1AuthInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "secret", - "description": "shared secret", - "type": { - "kind": "NON_NULL", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -56824,46 +54143,29 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "header", - "description": "http header in which to find the hash", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", + "name": "state", + "description": "The AtmJobTaskState of this AtmJobTask", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtmJobTaskState", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": "", + "name": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask is updated", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -56873,41 +54175,43 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ResourceUserType", - "description": "", + "name": "AtmJobTaskState", + "description": "The state of a AtmJobTask", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "SCMId", + "name": "created", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "GenericResourceUser", + "name": "running", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "SystemAccount", + "name": "failed", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "GitHubAppResourceUser", + "name": "success", "description": "", "isDeprecated": false, "deprecationReason": null @@ -56916,120 +54220,113 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMOrgsInput", + "kind": "ENUM", + "name": "_AtomistLogOrdering", "description": "", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "orgs", + "name": "asc", "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMOrgInput", - "ofType": null - } - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc", + "description": "", + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMOrgInput", + "kind": "OBJECT", + "name": "AtomistLog", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "name", + "name": "category", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "correlation_context", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AtomistLogCorrelationContext", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "id", + "name": "level", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "message", "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ownerType", + "name": "team_id", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SCMReposInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "orgId", - "description": "The id of the org as represented in the Atomist graph", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", + "name": "timestamp", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -57039,141 +54336,218 @@ "ofType": null } }, - "defaultValue": null - }, - { - "name": "repos", - "description": "The list of repos to ingest", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMRepoInput", - "ofType": null - } - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMRepoInput", + "kind": "OBJECT", + "name": "AtomistLogCorrelationContext", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "repoId", - "description": "The the id of the repo as provided by the SCM provider not the Atomist graph", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "automation", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistLogAutomation", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", - "description": "The http url of the repo in the SCM provider", + "name": "correlation_id", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistLogAutomation", + "description": "", + "fields": [ { "name": "name", - "description": "The name of the repo", + "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "defaultBranch", - "description": "The default branch of the repo (master if unknown)", + "name": "version", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMCommitInput", + "kind": "OBJECT", + "name": "Ok", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "repoId", - "description": "The id of the repo as it appears in the graph", + "name": "ok", + "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BucketUnit", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "YEAR", + "description": "Group events by year.", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", - "description": "The sha of the commit", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "MONTH", + "description": "Group events by month.", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "email", - "description": "The email address of the commit", - "type": { - "kind": "INPUT_OBJECT", - "name": "EmailInput", - "ofType": null - }, - "defaultValue": null + "name": "DAY", + "description": "Group events by day.", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", - "description": "The commit message", + "name": "HOUR", + "description": "Group events by hour.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MINUTE", + "description": "Group events by minute.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SECOND", + "description": "Group events by second.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "EventType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CHAT", + "description": "Chat events which have been received.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CUSTOM", + "description": "Custom events which have been received.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCM", + "description": "Events which have been received from an SCM source.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventsReportRow", + "description": "", + "fields": [ + { + "name": "bucket", + "description": "The start date-time of this row.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -57183,574 +54557,555 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", - "description": "The http url of the commit in the SCM provider", + "name": "chatCount", + "description": "The number of chat events in this time bucket.", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "timestamp", - "description": "The commit timestamp", + "name": "customCount", + "description": "The number of custom events in this time bucket.", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branchName", - "description": "The name of the branch this commit is being ingested on", + "name": "scmCount", + "description": "The number of SCM events in this time bucket.", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "author", - "description": "The author of the commit - optional but helpful if available", - "type": { - "kind": "INPUT_OBJECT", - "name": "SCMAuthorInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "EmailInput", - "description": "", + "kind": "ENUM", + "name": "_Ordering", + "description": "asc or desc ordering. Must be used with orderBy", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "address", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "desc", + "description": "Descending order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "asc", + "description": "Ascending order", + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMAuthorInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "Card", + "description": null, + "fields": [ { - "name": "login", - "description": "The login of the commit author in the SCM provider", + "name": "actionGroups", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardActionGroup", "ofType": null } }, - "defaultValue": null - }, - { - "name": "email", - "description": "The authors email address", - "type": { - "kind": "INPUT_OBJECT", - "name": "EmailInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the author", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FingerprintInput", - "description": "For submitting new RepoFingerprints", - "fields": null, - "inputFields": [ - { - "name": "data", - "description": "Optional data, such as dependency version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": "Optional human readable string for this fingerprint", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayType", - "description": "Optional human readable string for the type (Aspect name) of this fingerprint", + "name": "actions", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayValue", - "description": "Optional human readable string for the value of this fingerprint", + "name": "body", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardBody", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": "The unique name for this fingerprint, such as the name of a dependency", + "name": "collaborators", + "description": null, + "args": [ + { + "name": "login", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardCollaborator", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", - "description": "The hash of this fingerprint - forms ID of a SourceFingerprint", + "name": "comments", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardBody", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FingerprintTargetInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", + "name": "correlations", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardCorrelation", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", - "description": "", + "name": "events", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardEvent", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", - "description": "", + "name": "goalSets", + "description": null, + "args": [ + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardSdmGoalSet", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtmJobTaskInput", - "description": "Input object for creation of AtmJobTask", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "data", - "description": "Sets additional information about this AtmJobTask", + "name": "key", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": "Sets the name for this AtmJobTask", + "name": "post", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provenance", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardProvenance", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtmJobInput", - "description": "The input object for the creation of a AtmJob", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "data", - "description": "Used to store additional information about this AtmJob", + "name": "reactions", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardReaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repository", + "description": null, + "args": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CardRepository", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", - "description": "A description for this job.", + "name": "shortTitle", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "initialState", - "description": "The initial state for the job. The default is running. Another option is preparing.", + "name": "title", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "AtmInitialJobState", + "kind": "OBJECT", + "name": "CardTitle", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "jobTasks", - "description": "The tasks for the job", + "name": "ts", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmJobTaskInput", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maxRunningTasks", - "description": "The maximum number of running (in-flight) tasks. By default, all tasks will be in-flight from the time the job is created.", + "name": "ttl", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": "Sets the name for this job", + "name": "type", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", - "description": "The owner of this job. Clients may use this in a subscription to avoid all clients subscribing to all tasks in a team.", + "name": "id", + "description": "The ID of this Card", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "AtmInitialJobState", - "description": "The initial state of an AtmJob", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "CardActionGroup", + "description": null, + "fields": [ { - "name": "preparing", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AtmJobTaskStateInput", - "description": "Input object for setting the state of a AtmJobTask", - "fields": null, - "inputFields": [ + }, { - "name": "message", - "description": "Sets additional information about the state of this AtmJobTask", + "name": "text", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "state", - "description": "Sets the AtmJobTaskState of this AtmJobState", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtmJobTaskState", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "AtmTaskRequest", - "description": "The input object for proposing an offer of work", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardAction", + "description": null, + "fields": [ { - "name": "jobId", - "description": "The id of the job", + "name": "command", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "maxTaskCount", - "description": "The maxiumum number of tasks to get. Default is 1.", + "name": "confirm", + "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "CardActionConfirmation", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "taskTimeout", - "description": "After this amount of time the task will time out and be available for other workers to get this work", + "name": "parameterName", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "taskTimeoutUnit", - "description": "The units (seconds, minutes, hours) to use for the taskTimeout", + "name": "parameterOptionGroups", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "TimeUnit", + "kind": "OBJECT", + "name": "CardActionParameterOptionGroup", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "worker", - "description": "Specify a name for the worker that is requesting this work", + "name": "parameterOptions", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardActionParameterOption", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TimeUnit", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "seconds", - "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "minutes", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hours", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelLinked", - "description": "", - "fields": [ - { - "name": "chatTeamId", - "description": "", + "name": "parameters", + "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardActionParameter", "ofType": null } }, @@ -57758,4383 +55113,21901 @@ "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "registration", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", - "description": "Auto generated input for type CommitIssueRelationship", - "fields": null, - "inputFields": [ + }, { - "name": "commit", + "name": "role", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipCommitInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "issue", + "name": "text", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipIssueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "type", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipCommitInput", - "description": "Auto generated input for type CommitIssueRelationshipCommit", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardActionConfirmation", + "description": null, + "fields": [ { - "name": "owner", + "name": "body", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "dismiss", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "ok", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipIssueInput", - "description": "Auto generated input for type CommitIssueRelationshipIssue", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "title", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardActionParameterOptionGroup", + "description": null, + "fields": [ { - "name": "owner", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "options", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionParameterOption", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentInput", - "description": "Auto generated input for type Deployment", - "fields": null, - "inputFields": [ - { - "name": "commit", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentCommitInput", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "CardActionParameterOption", + "description": null, + "fields": [ { - "name": "environment", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", + "name": "value", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentCommitInput", - "description": "Auto generated input for type DeploymentCommit", - "fields": null, - "inputFields": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "CardActionParameter", + "description": null, + "fields": [ { - "name": "repo", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "value", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", - "description": "Auto generated input for type IssueRelationship", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardBody", + "description": null, + "fields": [ { - "name": "relationshipId", + "name": "avatar", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "source", + "name": "hint", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", + "name": "login", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "target", + "name": "text", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", - "description": "Auto generated input for type IssueRelationshipIssue", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardCollaborator", + "description": null, + "fields": [ { - "name": "issue", + "name": "avatar", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", + "name": "link", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "login", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", - "description": "Auto generated input for type SdmGoal", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardCorrelation", + "description": null, + "fields": [ { - "name": "approval", + "name": "body", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CorrelationBody", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "approvalRequired", + "name": "icon", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch", + "name": "link", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "data", + "name": "shortTitle", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "description", + "name": "title", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDescriptionsInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "environment", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CorrelationBody", + "description": null, + "fields": [ { - "name": "externalKey", + "name": "icon", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "externalUrl", + "name": "text", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardEvent", + "description": null, + "fields": [ { - "name": "externalUrls", + "name": "actionGroups", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmExternalUrlInput", + "kind": "OBJECT", + "name": "CardActionGroup", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "fulfillment", + "name": "actions", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalFulfillmentInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "goalSet", + "name": "icon", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "goalSetId", + "name": "text", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardSdmGoalSet", + "description": null, + "fields": [ { - "name": "parameters", + "name": "actions", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "phase", + "name": "duration", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "preApproval", + "name": "goalSet", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "preApprovalRequired", + "name": "goalSetId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "preConditions", + "name": "goals", "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmConditionInput", + "kind": "OBJECT", + "name": "CardSdmGoal", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "provenance", + "name": "registration", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "registration", + "name": "state", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "ts", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardSdmGoal", + "description": null, + "fields": [ { - "name": "retryFeasible", + "name": "actions", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "signature", + "name": "environment", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", + "name": "link", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", + "name": "logLink", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uniqueName", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "state", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "description": "Auto generated input for type SdmProvenance", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardProvenance", + "description": null, + "fields": [ { - "name": "channelId", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardReaction", + "description": null, + "fields": [ { - "name": "correlationId", + "name": "avatar", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "login", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "registration", + "name": "reaction", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardRepository", + "description": null, + "fields": [ { - "name": "ts", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "userId", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", + "name": "slug", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDescriptionsInput", - "description": "Auto generated input for type SdmGoalDescriptions", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CardTitle", + "description": null, + "fields": [ { - "name": "canceled", + "name": "icon", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "completed", + "name": "text", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Notification", + "description": null, + "fields": [ { - "name": "failed", + "name": "actions", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationAction", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "inProcess", + "name": "body", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "planned", + "name": "contentType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "requested", + "name": "correlationId", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "skipped", + "name": "key", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stopped", + "name": "post", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "waitingForApproval", + "name": "recipient", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "args": [ + { + "name": "address", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "NotificationRecipient", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "waitingForPreApproval", + "name": "ts", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmExternalUrlInput", - "description": "Auto generated input for type SdmExternalUrl", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "label", + "name": "ttl", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", - "description": null, + "name": "id", + "description": "The ID of this Notification", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalFulfillmentInput", - "description": "Auto generated input for type SdmGoalFulfillment", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "NotificationAction", + "description": null, + "fields": [ { - "name": "method", + "name": "command", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "parameterName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameterOptionGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterOptions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameterOption", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameter", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { "name": "registration", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmConditionInput", - "description": "Auto generated input for type SdmCondition", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "environment", + "name": "role", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "text", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uniqueName", + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "description": "Auto generated input for type SdmRepository", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "NotificationActionParameterOptionGroup", + "description": null, + "fields": [ { "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", + "name": "options", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameterOption", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationActionParameterOption", + "description": null, + "fields": [ + { + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "providerId", + "name": "value", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", - "description": "Auto generated input for type SdmGoalSet", - "fields": null, - "inputFields": [ - { - "name": "branch", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "NotificationActionParameter", + "description": null, + "fields": [ { - "name": "goalSet", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "goalSetId", + "name": "value", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationRecipient", + "description": null, + "fields": [ { - "name": "goals", + "name": "address", "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalNameInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "provenance", + "name": "references", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "fixes", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "ofType": null - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationship", + "description": null, + "fields": [ { - "name": "sha", + "name": "commit", "description": null, + "args": [ + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", + "name": "issue", "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "tags", + "name": "type", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetTagInput", - "ofType": null - } + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "id", + "description": "The ID of this CommitIssueRelationship", + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalNameInput", - "description": "Auto generated input for type SdmGoalName", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", + "description": null, + "fields": [ { - "name": "name", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uniqueName", + "name": "repo", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetTagInput", - "description": "Auto generated input for type SdmGoalSetTag", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "sha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDisplayInput", - "description": "Auto generated input for type SdmGoalDisplay", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", + "description": null, + "fields": [ { - "name": "branch", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "format", + "name": "owner", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "repo", "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Deployment", + "description": null, + "fields": [ { - "name": "state", + "name": "commit", "description": null, + "args": [ + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", + "kind": "OBJECT", + "name": "DeploymentCommit", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", + "name": "environment", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", - "description": "Auto generated input for type SdmBuildIdentifier", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "identifier", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "id", + "description": "The ID of this Deployment", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierRepositoryInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierRepositoryInput", - "description": "Auto generated input for type SdmBuildIdentifierRepository", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "DeploymentCommit", + "description": null, + "fields": [ { - "name": "name", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", + "name": "repo", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "providerId", + "name": "sha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", - "description": "Auto generated input for type SdmDeployEnablement", - "fields": null, - "inputFields": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "kind": "OBJECT", + "name": "IssueRelationship", + "description": null, + "fields": [ { - "name": "providerId", + "name": "relationshipId", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "source", "description": null, + "args": [ + { + "name": "issue", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "IssueRelationshipIssue", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "state", "description": null, - "type": { - "kind": "ENUM", - "name": "SdmDeployState", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionInput", - "description": "Auto generated input for type SdmVersion", - "fields": null, - "inputFields": [ - { - "name": "branch", - "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "target", "description": null, + "args": [ + { + "name": "issue", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionRepositoryInput", + "kind": "OBJECT", + "name": "IssueRelationshipIssue", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "id", + "description": "The ID of this IssueRelationship", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionRepositoryInput", - "description": "Auto generated input for type SdmVersionRepository", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "IssueRelationshipIssue", + "description": null, + "fields": [ { - "name": "name", + "name": "issue", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "providerId", + "name": "repo", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", - "description": "Auto generated input for type SdmGoalSetBadge", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmBuildIdentifier", + "description": null, + "fields": [ { - "name": "repo", + "name": "identifier", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeRepositoryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sdm", + "name": "repo", "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SdmBuildIdentifierRepository", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "token", - "description": null, + "name": "id", + "description": "The ID of this SdmBuildIdentifier", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeRepositoryInput", - "description": "Auto generated input for type SdmGoalSetBadgeRepository", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmBuildIdentifierRepository", + "description": null, + "fields": [ { "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "providerId", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmPreferenceInput", - "description": "Auto generated input for type SdmPreference", + "kind": "ENUM", + "name": "SdmDeployState", + "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "key", + "name": "requested", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmDeployEnablement", + "description": null, + "fields": [ + { + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ttl", + "name": "providerId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", + "name": "repo", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepoProvenanceInput", - "description": "Auto generated input for type SdmRepoProvenance", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "provenance", + "name": "state", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", + "kind": "ENUM", + "name": "SdmDeployState", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "id", + "description": "The ID of this SdmDeployEnablement", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", - "description": "Auto generated input for type PolicyLog", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmVersion", + "description": null, + "fields": [ { - "name": "apply", + "name": "branch", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomApplyPolicyLogInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "manage", + "name": "repo", "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomManageTargetPolicyLogInput", + "kind": "OBJECT", + "name": "SdmVersionRepository", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "sha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "subscribe", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomManageSubscriptionPolicyLogInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", + "name": "version", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "id", + "description": "The ID of this SdmVersion", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomApplyPolicyLogInput", - "description": "Auto generated input for type ApplyPolicyLog", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmVersionRepository", + "description": null, + "fields": [ { - "name": "_prId", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_sha", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch", + "name": "providerId", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoalSetBadge", + "description": null, + "fields": [ + { + "name": "repo", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SdmGoalSetBadgeRepository", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "message", + "name": "sdm", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", + "name": "token", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ApplyPolicyState", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targetSha", - "description": null, + "name": "id", + "description": "The ID of this SdmGoalSetBadge", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomManageTargetPolicyLogInput", - "description": "Auto generated input for type ManageTargetPolicyLog", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmGoalSetBadgeRepository", + "description": null, + "fields": [ { - "name": "action", + "name": "name", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ManageTargetPolicyAction", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "author", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reason", + "name": "providerId", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmPreference", + "description": null, + "fields": [ { - "name": "streamId", + "name": "key", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "streamName", + "name": "ttl", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targetSha", + "name": "value", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targetValue", - "description": null, + "name": "id", + "description": "The ID of this SdmPreference", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomManageSubscriptionPolicyLogInput", - "description": "Auto generated input for type ManageSubscriptionPolicyLog", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmRepoProvenance", + "description": null, + "fields": [ { - "name": "action", + "name": "provenance", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "ManageSubscriptionPolicyAction", + "kind": "OBJECT", + "name": "SdmProvenance", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "author", + "name": "repo", "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SdmRepository", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "branch", - "description": null, + "name": "id", + "description": "The ID of this SdmRepoProvenance", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyLog", + "description": null, + "fields": [ { - "name": "owner", + "name": "apply", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ApplyPolicyLog", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reason", + "name": "manage", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ManageTargetPolicyLog", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "streamId", + "name": "subscribe", "description": null, + "args": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "streamName", + "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targetSha", + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targetValue", - "description": null, + "name": "id", + "description": "The ID of this PolicyLog", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceInput", - "description": "Auto generated input for type PolicyCompliance", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ApplyPolicyLog", + "description": null, + "fields": [ { - "name": "_branch", + "name": "_prId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_owner", + "name": "_sha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_repo", + "name": "branch", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_sha", + "name": "commit", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, - "defaultValue": null - }, - { - "name": "aspects", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceAspectInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "differences", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceFingerprintInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "owner", + "name": "message", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", + "name": "pullRequest", "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "PolicyCompliaceState", + "kind": "OBJECT", + "name": "PullRequest", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "targets", + "name": "state", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceFingerprintInput", - "ofType": null - } + "kind": "ENUM", + "name": "ApplyPolicyState", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", + "name": "targetSha", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceAspectInput", - "description": "Auto generated input for type PolicyComplianceAspect", + "kind": "ENUM", + "name": "ApplyPolicyState", + "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "displayType", + "name": "success", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "manageable", + "name": "no_change", "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "failure", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceFingerprintInput", - "description": "Auto generated input for type PolicyComplianceFingerprint", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ManageTargetPolicyLog", + "description": null, + "fields": [ { - "name": "data", + "name": "action", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManageTargetPolicyAction", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "author", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayType", + "name": "reason", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayValue", + "name": "streamId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "streamName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "targetSha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "targetValue", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetStreamInput", - "description": "Auto generated input for type PolicyTargetStream", + "kind": "ENUM", + "name": "ManageTargetPolicyAction", + "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "unset", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "set", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", - "description": "Auto generated input for type PolicyTarget", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", + "description": null, + "fields": [ { - "name": "data", + "name": "action", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayName", + "name": "author", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "displayValue", + "name": "branch", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "sha", + "name": "reason", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "streams", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "repo", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSkillOutputInput", - "description": "Auto generated input for type SkillOutput", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "_branch", + "name": "streamId", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_owner", + "name": "streamName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_repo", + "name": "targetSha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "_sha", + "name": "targetValue", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ignore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unignore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "classifier", + "name": "unsubscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "description": null, + "fields": [ + { + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "correlationId", - "description": null, + "name": "id", + "description": "The ID of this PolicyTargetStream", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyTarget", + "description": null, + "fields": [ { - "name": "orgParentId", + "name": "data", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoParentId", + "name": "displayName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "skill", + "name": "displayValue", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSkillOutputSkillInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "uri", + "name": "sha", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSkillOutputSkillInput", - "description": "Auto generated input for type SkillOutputSkill", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "streams", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "id", + "description": "The ID of this PolicyTarget", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomCardInput", - "description": "Auto generated input for type Card", + "kind": "ENUM", + "name": "LifecycleAttachmentType", + "description": null, "fields": null, - "inputFields": [ - { - "name": "actionGroups", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", - "ofType": null - } - }, - "defaultValue": null - }, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", + "name": "push", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } - }, - "defaultValue": null - }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LifecycleAttachment", + "description": null, + "fields": [ { "name": "body", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "collaborators", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardCollaboratorInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "comments", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "correlations", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardCorrelationInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "events", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardEventInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "goalSets", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalSetInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "key", + "name": "configuration", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "post", + "name": "contentType", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "provenance", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardProvenanceInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reactions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardReactionInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repository", + "name": "identifier", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardRepositoryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "shortTitle", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "title", + "name": "skill", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardTitleInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { "name": "ts", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ttl", + "name": "type", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LifecycleAttachmentType", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "id", + "description": "The ID of this LifecycleAttachment", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", - "description": "Auto generated input for type CardActionGroup", + "kind": "ENUM", + "name": "AspectRegistrationState", + "description": null, "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", + "name": "Disabled", "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", + "name": "Enabled", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "description": "Auto generated input for type CardAction", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "AspectRegistration", + "description": null, + "fields": [ { - "name": "command", + "name": "category", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "confirm", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionConfirmationInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameterName", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - }, - { - "name": "parameterOptionGroups", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionGroupInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "parameterOptions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "parameters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "registration", + "name": "displayName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "role", + "name": "endpoint", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", + "name": "manageable", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionConfirmationInput", - "description": "Auto generated input for type CardActionConfirmation", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "body", + "name": "owner", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "dismiss", + "name": "shortName", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ok", + "name": "state", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AspectRegistrationState", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "title", + "name": "unit", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionGroupInput", - "description": "Auto generated input for type CardActionParameterOptionGroup", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "url", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "options", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "description": "Auto generated input for type CardActionParameterOption", - "fields": null, - "inputFields": [ - { - "name": "name", + "name": "uuid", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "id", + "description": "The ID of this AspectRegistration", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterInput", - "description": "Auto generated input for type CardActionParameter", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ { - "name": "name", - "description": null, + "name": "publishSkill", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "registerSkill", + "description": "", + "args": [ + { + "name": "skill", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", - "description": "Auto generated input for type CardBody", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "avatar", - "description": null, + "name": "removeSkillConfiguration", + "description": "", + "args": [ + { + "name": "configurationId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "configurationName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkills", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hint", - "description": null, + "name": "saveSkillConfiguration", + "description": "", + "args": [ + { + "name": "configuration", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillConfigurationInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "oldName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "replacingCommitSha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "upgradePolicy", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillUpgradePolicy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkills", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "login", - "description": null, + "name": "setSkillMaturity", + "description": "", + "args": [ + { + "name": "maturity", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "unpublishSkill", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RegisteredAtomistSkill", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "setTeamConfiguration", + "description": "# Team/Workspace configuration ##", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ttlSecs", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardCollaboratorInput", - "description": "Auto generated input for type CardCollaborator", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "avatar", - "description": null, + "name": "deleteTeamConfiguration", + "description": "", + "args": [ + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "TeamConfiguration", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "link", - "description": null, + "name": "disableRegistration", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistRegistration", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "login", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardCorrelationInput", - "description": "Auto generated input for type CardCorrelation", - "fields": null, - "inputFields": [ - { - "name": "body", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCorrelationBodyInput", - "ofType": null + "name": "enableRegistration", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } - }, - "defaultValue": null - }, - { - "name": "icon", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "link", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shortTitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCorrelationBodyInput", - "description": "Auto generated input for type CorrelationBody", - "fields": null, - "inputFields": [ - { - "name": "icon", - "description": null, + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistRegistration", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardEventInput", - "description": "Auto generated input for type CardEvent", - "fields": null, - "inputFields": [ - { - "name": "actionGroups", - "description": null, + "name": "createGHEAppResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "private", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "applicationId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "applicationName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "actions", - "description": null, + "name": "createGitHubComAppResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", "ofType": null } }, - "defaultValue": null - }, - { - "name": "icon", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalSetInput", - "description": "Auto generated input for type CardSdmGoalSet", - "fields": null, - "inputFields": [ - { - "name": "actions", - "description": null, + "name": "createGitHubResourceProvider", + "description": "Creates SCMProvider for github.com with a bunch of defaults", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null - }, - { - "name": "duration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "goalSet", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "goalSetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "goals", - "description": null, + "name": "createGHEResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "private", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalInput", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null - }, - { - "name": "registration", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalInput", - "description": "Auto generated input for type CardSdmGoal", - "fields": null, - "inputFields": [ - { - "name": "actions", - "description": null, + "name": "createBitBucketResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "private", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "link", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logLink", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardProvenanceInput", - "description": "Auto generated input for type CardProvenance", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardReactionInput", - "description": "Auto generated input for type CardReaction", - "fields": null, - "inputFields": [ - { - "name": "avatar", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reaction", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardRepositoryInput", - "description": "Auto generated input for type CardRepository", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "slug", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomCardTitleInput", - "description": "Auto generated input for type CardTitle", - "fields": null, - "inputFields": [ - { - "name": "icon", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", - "description": "Auto generated input for type Notification", - "fields": null, - "inputFields": [ - { - "name": "actions", - "description": null, + "name": "createGitLabResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "private", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionInput", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "body", - "description": null, + "name": "configureGitHubResourceProvider", + "description": "configure repos/orgs - raise system event for SCMProvider", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "config", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "contentType", - "description": null, + "name": "setSCMProviderState", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerState", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMProvider", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "correlationId", - "description": null, + "name": "linkGitHubAppInstallation", + "description": "Links a GitHubAppInstallation to the provider as an Org", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppInstallation", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", + "name": "createGitHubAppInstallation", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "installationId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppInstallation", "ofType": null } }, - "defaultValue": null - }, - { - "name": "post", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "recipient", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationRecipientInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "disconnectGitHubAppOrg", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ttl", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionInput", - "description": "Auto generated input for type NotificationAction", - "fields": null, - "inputFields": [ - { - "name": "command", - "description": null, + "name": "deleteOrg", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameterName", - "description": null, + "name": "deleteRepo", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameterOptionGroups", - "description": null, + "name": "deleteAllFingerprints", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionGroupInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameterOptions", - "description": null, + "name": "deleteAspectFingerprints", + "description": "", + "args": [ + { + "name": "featureName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "parameters", - "description": null, + "name": "createWebhook", + "description": "create and expose a webhook over the public internet", + "args": [ + { + "name": "webhook", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterInput", + "kind": "OBJECT", + "name": "Webhook", "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "registration", - "description": null, + "name": "deleteWebhook", + "description": "delete a webhook from public internet", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "role", - "description": null, + "name": "updateWebhook", + "description": "associate some state with a webhook to help convergence etc", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "webhook", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookUpdateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "addWebhookTag", + "description": "add (or overwrite) a tag on a webhook", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionGroupInput", - "description": "Auto generated input for type NotificationActionParameterOptionGroup", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, + "name": "setWebhookTags", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "options", - "description": null, + "name": "removeChatTeam", + "description": "Removes a ChatTeam and associated nodes from the graph", + "args": [ + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionInput", - "description": "Auto generated input for type NotificationActionParameterOption", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "ingestSCMOrgs", + "description": "### RCCA SCM Ingestion Mutations ####", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmOrgsInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMOrgsInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "ingestSCMRepos", + "description": "", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmReposInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMReposInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } + } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterInput", - "description": "Auto generated input for type NotificationActionParameter", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": null, + "name": "ingestSCMCommit", + "description": "", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmCommitInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMCommitInput", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "setSCMOrgInitializationState", + "description": "", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmOrgId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "initializationState", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrgInitializationState", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Org", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationRecipientInput", - "description": "Auto generated input for type NotificationRecipient", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "address", - "description": null, + "name": "ingestChatChannels", + "description": "", + "args": [ + { + "name": "chatTeamAtomistId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatChannels", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatChannelInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeChatChannels", + "description": "", + "args": [ + { + "name": "chatTeamAtomistId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatChannelAtomistIds", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestChatIds", + "description": "", + "args": [ + { + "name": "chatTeamAtomistId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatIds", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChatIdInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "removeChatIds", + "description": "", + "args": [ + { + "name": "chatTeamAtomistId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatIdAtomistIds", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDockerRegistryProvider", + "description": "Deprecated. Creates a new docker registry provider.", + "args": [ + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDockerHubRegistryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DockerHubInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateDockerHubRegistryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DockerHubInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGoogleContainerRegistryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GoogleContainerRegistryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateGoogleContainerRegistryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GoogleContainerRegistryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createJFrogDockerRegistryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JFrogDockerRegistryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateJFrogDockerRegistryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "JFrogDockerRegistryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDockerContainerImage", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DockerRegistryImageInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "links", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceLinks", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerRegistryImage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGoogleCloudPlatformProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GoogleCloudPlatformInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateGoogleCloudPlatformProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GoogleCloudPlatformInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createKubernetesClusterProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "KubernetesClusterInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateKubernetesClusterProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "KubernetesClusterInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createArtifactoryMavenRepositoryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArtifactoryMavenRepositoryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateArtifactoryMavenRepositoryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ArtifactoryMavenRepositoryInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createNpmJSRegistryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NpmJSRegistryProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateNpmJSRegistryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NpmJSRegistryProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGitHubNpmRegistryProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitHubNpmRegistryProviderInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitHubAppInstallationId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateGitHubNpmRegistryProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "GitHubNpmRegistryProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkResourceToGraph", + "description": "", + "args": [ + { + "name": "resourceId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "links", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceLinks", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Resource", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setResourceProviderState", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerState", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceProviderStateInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteResourceProvider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setCredential", + "description": "", + "args": [ + { + "name": "providerId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceUserId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "credential", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CredentialInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkCredentialToResourceProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "credentialId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createResourceUser", + "description": "### Users ####", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceUserType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceUserType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateResourceUser", + "description": "", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceUserId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkResourceUser", + "description": "", + "args": [ + { + "name": "resourceUserId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "personId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGenericResourceProvider", + "description": "", + "args": [ + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GenericResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createBinaryRepositoryProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BinaryRepositoryType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSecretProvider", + "description": "", + "args": [ + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SecretProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SecretProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateSecretProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "input", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SecretProviderInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SecretProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteFingerprints", + "description": "Delete all fingerprints for this team matching supplied query", + "args": [ + { + "name": "branchId", + "description": "Restrict to this particular branch in repo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Restrict to this particular name within type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "Restrict to this particular repo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Restrict to this particular type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setCommitFingerprints", + "description": "Set the fingerprints of a commit", + "args": [ + { + "name": "add", + "description": "List of new fingerprints added by this commit", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FingerprintInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "branchId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "commitSha", + "description": "The sha of the the commit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isDefaultBranch", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isHeadCommit", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "Id of the repo in the graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The type of this fingerprint e.g. package.json-deps", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setFingerprintTarget", + "description": "", + "args": [ + { + "name": "target", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FingerprintTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FingerprintTarget", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addAtmJobTasks", + "description": "Add tasks to existing job, provided the job is in a preparing state.", + "args": [ + { + "name": "jobId", + "description": "The id of the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobTasks", + "description": "The tasks for the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createAtmJob", + "description": "Create a new AtmJob", + "args": [ + { + "name": "jobInput", + "description": "The AtmJobInput for the AtmJob you are creating", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resumeAtmJob", + "description": "Re-trigger tasks for a job that have not completed", + "args": [ + { + "name": "jobId", + "description": "The id of the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setAtmJobTaskState", + "description": "Set the state on a AtmJobTask", + "args": [ + { + "name": "id", + "description": "The id of the AtmJobTask to set the state of", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobTaskState", + "description": "The state to set", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskStateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "takeTasks", + "description": "Take tasks to work on", + "args": [ + { + "name": "taskRequest", + "description": "The request for tasks", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmTaskRequest", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkSlackChannelToRepo", + "description": "", + "args": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChannelLinked", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unlinkSlackChannelFromRepo", + "description": "", + "args": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChannelLinked", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomCard", + "description": "Auto-generated ingestion mutation for Card", + "args": [ + { + "name": "value", + "description": "The instance of Card to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomNotification", + "description": "Auto-generated ingestion mutation for Notification", + "args": [ + { + "name": "value", + "description": "The instance of Notification to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomCommitIssueRelationship", + "description": "Auto-generated ingestion mutation for CommitIssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of CommitIssueRelationship to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomDeployment", + "description": "Auto-generated ingestion mutation for Deployment", + "args": [ + { + "name": "value", + "description": "The instance of Deployment to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomIssueRelationship", + "description": "Auto-generated ingestion mutation for IssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of IssueRelationship to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoal", + "description": "Auto-generated ingestion mutation for SdmGoal", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoal to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalSet", + "description": "Auto-generated ingestion mutation for SdmGoalSet", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSet to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalDisplay", + "description": "Auto-generated ingestion mutation for SdmGoalDisplay", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalDisplay to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmBuildIdentifier", + "description": "Auto-generated ingestion mutation for SdmBuildIdentifier", + "args": [ + { + "name": "value", + "description": "The instance of SdmBuildIdentifier to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmDeployEnablement", + "description": "Auto-generated ingestion mutation for SdmDeployEnablement", + "args": [ + { + "name": "value", + "description": "The instance of SdmDeployEnablement to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmVersion", + "description": "Auto-generated ingestion mutation for SdmVersion", + "args": [ + { + "name": "value", + "description": "The instance of SdmVersion to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalSetBadge", + "description": "Auto-generated ingestion mutation for SdmGoalSetBadge", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSetBadge to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmPreference", + "description": "Auto-generated ingestion mutation for SdmPreference", + "args": [ + { + "name": "value", + "description": "The instance of SdmPreference to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmRepoProvenance", + "description": "Auto-generated ingestion mutation for SdmRepoProvenance", + "args": [ + { + "name": "value", + "description": "The instance of SdmRepoProvenance to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyLog", + "description": "Auto-generated ingestion mutation for PolicyLog", + "args": [ + { + "name": "value", + "description": "The instance of PolicyLog to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyCompliance", + "description": "Auto-generated ingestion mutation for PolicyCompliance", + "args": [ + { + "name": "value", + "description": "The instance of PolicyCompliance to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyTargetStream", + "description": "Auto-generated ingestion mutation for PolicyTargetStream", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTargetStream to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyTarget", + "description": "Auto-generated ingestion mutation for PolicyTarget", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTarget to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomLifecycleAttachment", + "description": "Auto-generated ingestion mutation for LifecycleAttachment", + "args": [ + { + "name": "value", + "description": "The instance of LifecycleAttachment to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomLifecycleAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomAspectRegistration", + "description": "Auto-generated ingestion mutation for AspectRegistration", + "args": [ + { + "name": "value", + "description": "The instance of AspectRegistration to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCard", + "description": "Auto-generated deletion mutation for Card", + "args": [ + { + "name": "value", + "description": "The instance of Card to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomNotification", + "description": "Auto-generated deletion mutation for Notification", + "args": [ + { + "name": "value", + "description": "The instance of Notification to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCommitIssueRelationship", + "description": "Auto-generated deletion mutation for CommitIssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of CommitIssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomDeployment", + "description": "Auto-generated deletion mutation for Deployment", + "args": [ + { + "name": "value", + "description": "The instance of Deployment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomIssueRelationship", + "description": "Auto-generated deletion mutation for IssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of IssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoal", + "description": "Auto-generated deletion mutation for SdmGoal", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoal to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSet", + "description": "Auto-generated deletion mutation for SdmGoalSet", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSet to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalDisplay", + "description": "Auto-generated deletion mutation for SdmGoalDisplay", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalDisplay to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmBuildIdentifier", + "description": "Auto-generated deletion mutation for SdmBuildIdentifier", + "args": [ + { + "name": "value", + "description": "The instance of SdmBuildIdentifier to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmDeployEnablement", + "description": "Auto-generated deletion mutation for SdmDeployEnablement", + "args": [ + { + "name": "value", + "description": "The instance of SdmDeployEnablement to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmVersion", + "description": "Auto-generated deletion mutation for SdmVersion", + "args": [ + { + "name": "value", + "description": "The instance of SdmVersion to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetBadge", + "description": "Auto-generated deletion mutation for SdmGoalSetBadge", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSetBadge to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmPreference", + "description": "Auto-generated deletion mutation for SdmPreference", + "args": [ + { + "name": "value", + "description": "The instance of SdmPreference to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmRepoProvenance", + "description": "Auto-generated deletion mutation for SdmRepoProvenance", + "args": [ + { + "name": "value", + "description": "The instance of SdmRepoProvenance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyLog", + "description": "Auto-generated deletion mutation for PolicyLog", + "args": [ + { + "name": "value", + "description": "The instance of PolicyLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyCompliance", + "description": "Auto-generated deletion mutation for PolicyCompliance", + "args": [ + { + "name": "value", + "description": "The instance of PolicyCompliance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetStream", + "description": "Auto-generated deletion mutation for PolicyTargetStream", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTargetStream to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTarget", + "description": "Auto-generated deletion mutation for PolicyTarget", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTarget to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomLifecycleAttachment", + "description": "Auto-generated deletion mutation for LifecycleAttachment", + "args": [ + { + "name": "value", + "description": "The instance of LifecycleAttachment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomLifecycleAttachmentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAspectRegistration", + "description": "Auto-generated deletion mutation for AspectRegistration", + "args": [ + { + "name": "value", + "description": "The instance of AspectRegistration to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCardById", + "description": "Auto-generated delete-by-id mutation for Card", + "args": [ + { + "name": "id", + "description": "The id of the Card to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomNotificationById", + "description": "Auto-generated delete-by-id mutation for Notification", + "args": [ + { + "name": "id", + "description": "The id of the Notification to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCommitIssueRelationshipById", + "description": "Auto-generated delete-by-id mutation for CommitIssueRelationship", + "args": [ + { + "name": "id", + "description": "The id of the CommitIssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomDeploymentById", + "description": "Auto-generated delete-by-id mutation for Deployment", + "args": [ + { + "name": "id", + "description": "The id of the Deployment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomIssueRelationshipById", + "description": "Auto-generated delete-by-id mutation for IssueRelationship", + "args": [ + { + "name": "id", + "description": "The id of the IssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalById", + "description": "Auto-generated delete-by-id mutation for SdmGoal", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoal to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetById", + "description": "Auto-generated delete-by-id mutation for SdmGoalSet", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalSet to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalDisplayById", + "description": "Auto-generated delete-by-id mutation for SdmGoalDisplay", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalDisplay to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmBuildIdentifierById", + "description": "Auto-generated delete-by-id mutation for SdmBuildIdentifier", + "args": [ + { + "name": "id", + "description": "The id of the SdmBuildIdentifier to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmDeployEnablementById", + "description": "Auto-generated delete-by-id mutation for SdmDeployEnablement", + "args": [ + { + "name": "id", + "description": "The id of the SdmDeployEnablement to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmVersionById", + "description": "Auto-generated delete-by-id mutation for SdmVersion", + "args": [ + { + "name": "id", + "description": "The id of the SdmVersion to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetBadgeById", + "description": "Auto-generated delete-by-id mutation for SdmGoalSetBadge", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalSetBadge to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmPreferenceById", + "description": "Auto-generated delete-by-id mutation for SdmPreference", + "args": [ + { + "name": "id", + "description": "The id of the SdmPreference to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmRepoProvenanceById", + "description": "Auto-generated delete-by-id mutation for SdmRepoProvenance", + "args": [ + { + "name": "id", + "description": "The id of the SdmRepoProvenance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyLogById", + "description": "Auto-generated delete-by-id mutation for PolicyLog", + "args": [ + { + "name": "id", + "description": "The id of the PolicyLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyComplianceById", + "description": "Auto-generated delete-by-id mutation for PolicyCompliance", + "args": [ + { + "name": "id", + "description": "The id of the PolicyCompliance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetStreamById", + "description": "Auto-generated delete-by-id mutation for PolicyTargetStream", + "args": [ + { + "name": "id", + "description": "The id of the PolicyTargetStream to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetById", + "description": "Auto-generated delete-by-id mutation for PolicyTarget", + "args": [ + { + "name": "id", + "description": "The id of the PolicyTarget to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomLifecycleAttachmentById", + "description": "Auto-generated delete-by-id mutation for LifecycleAttachment", + "args": [ + { + "name": "id", + "description": "The id of the LifecycleAttachment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAspectRegistrationById", + "description": "Auto-generated delete-by-id mutation for AspectRegistration", + "args": [ + { + "name": "id", + "description": "The id of the AspectRegistration to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setChatUserPreference", + "description": "Set the value of a user preference.", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatUserId", + "description": "The id of user", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": "The value of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setChatTeamPreference", + "description": "Set the value of a chat team preference. Returns what was set", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": "The value of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSlackChannel", + "description": "Create a slack channel in the current team", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the channel to create", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addBotToSlackChannel", + "description": "Ask the bot to join a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel to join", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviteUserToSlackChannel", + "description": "Ask the bot to invite a user to join a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel to join", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The id of the user to invite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kickUserFromSlackChannel", + "description": "Ask the bot to kick a user from a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The id of the user", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setOwnerLogin", + "description": "set a GitHub login to be used for resources owned by an Org", + "args": [ + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "The id of the Git provider for this Owner", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": "The login that should be used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OwnerLogin", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setRepoLogin", + "description": "set a GitHub login to be used for this Repository", + "args": [ + { + "name": "repo", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "The id of the Git provider for this Owner", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": "The login that should be used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "RepoLogin", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setTeamProperties", + "description": "Set a team's properties", + "args": [ + { + "name": "name", + "description": "The display name of the team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "URL to a teams icon", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "artifacts", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillArtifactsInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "author", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "capabilities", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilitiesInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "categories", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillCategoryKey", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "commands", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistChatCommandInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "commitSha", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "datalogSubscriptions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDatalogSubscriptionInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "dispatchStyle", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "homepageUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ingesters", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "integration", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "license", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "longDescription", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "maturity", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillMaturityLevel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxConfigurations", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterSpecInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "readme", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviders", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillResourceProviderSpecInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "schemata", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIngestionSchemaInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "subscriptions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "technologies", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillTechnology", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "videoUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillArtifactsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "docker", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistDockerSkillArtifactInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "gcf", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistGCFSkillArtifactInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistDockerSkillArtifactInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "args", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "command", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "env", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillEnvVariableInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "image", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resources", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workingDir", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillEnvVariableInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "limit", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesLimitInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "request", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesRequestInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesLimitInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "cpu", + "description": "kubenetes like cpu units", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "memory", + "description": "memory in megabytes", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDockerResourcesRequestInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "cpu", + "description": "kubenetes like cpu units", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "memory", + "description": "memory in megabytes", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistGCFSkillArtifactInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "entryPoint", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "memory", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "runtime", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillRuntime", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timeout", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillRuntime", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "nodejs10", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nodejs12", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "python37", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "python38", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "go113", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "java11", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilitiesInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "provides", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillProvidedCapabilityInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "requires", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRequiredCapabilityInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillProvidedCapabilityInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRequiredCapabilityInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "scopes", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillRequiredCapabilityScope", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "usage", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistChatCommandInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "pattern", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillDatalogSubscriptionInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "query", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "boolean", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatChannels", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelsParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fileFilter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFileFilterParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "float", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "int", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "multiChoice", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoFilter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "secret", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSecretParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "singleChoice", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "string", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stringArray", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterSpecInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "webhook", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterSpecInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelsParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFileFilterParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maximum", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minimum", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "placeHolder", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maximum", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minimum", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "placeHolder", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValues", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "options", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSecretParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lineStyle", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillStringParameterLineStyle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillStringParameterLineStyle", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "single", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "multiple", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "options", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lineStyle", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillStringParameterLineStyle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "pattern", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "placeHolder", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "pattern", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "visibility", + "description": "", + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillResourceProviderSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "description", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxAllowed", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minRequired", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "typeName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIngestionSchemaInput", + "description": "Start: registration inputs", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "schema", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillConfigurationInput", + "description": "Configuration inputs", + "fields": null, + "inputFields": [ + { + "name": "capabilities", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilityProvidersInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enabled", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "resourceProviders", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillResourceProviderInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilityProvidersInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providers", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilityProviderInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "usage", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillCapabilityProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "configurationName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "boolean", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatChannels", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fileFilter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFileFilterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "float", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "int", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "multiChoice", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoFilter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schedule", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "secret", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSecretParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "singleChoice", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "string", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stringArray", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "webhook", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChatChannelInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFileFilterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersValueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersValueInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "excludes", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "includes", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "ownerId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repoIds", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleValueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleValueInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "cronExpression", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timeZone", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSecretParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterValueInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillWebhookParameterValueInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillResourceProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "selectedResourceProviders", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSelectedResourceProviderInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSelectedResourceProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgs", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "repos", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SCMProviderStateName", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "error", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SCMProviderStateName", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "converged", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unconverged", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "misconfigured", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unauthorized", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WebhookAuthType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "hmacSha1", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "HmacSha1AuthInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tags", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "WebhookState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HmacSha1AuthInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "shared secret", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "header", + "description": "http header in which to find the hash", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookUpdateInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "authType", + "description": "", + "type": { + "kind": "ENUM", + "name": "WebhookAuthType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hmacSha1", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "HmacSha1AuthInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tags", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "WebhookState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMOrgsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgs", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMOrgInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMOrgInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMReposInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgId", + "description": "The id of the org as represented in the Atomist graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repos", + "description": "The list of repos to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMRepoInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMRepoInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "repoId", + "description": "The the id of the repo as provided by the SCM provider not the Atomist graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The http url of the repo in the SCM provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the repo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "The default branch of the repo (master if unknown)", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMCommitInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "repoId", + "description": "The id of the repo as it appears in the graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "The sha of the commit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The email address of the commit", + "type": { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "The commit message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The http url of the commit in the SCM provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "The commit timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "The name of the branch this commit is being ingested on", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "author", + "description": "The author of the commit - optional but helpful if available", + "type": { + "kind": "INPUT_OBJECT", + "name": "SCMAuthorInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "address", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMAuthorInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "login", + "description": "The login of the commit author in the SCM provider", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The authors email address", + "type": { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the author", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatChannelInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isDefault", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archived", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChatIdInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "userId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "screenName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isAtomistBot", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isBot", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DockerHubInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "namespace", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GoogleContainerRegistryInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registryHost", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "JFrogDockerRegistryInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DockerRegistryImageInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "imageName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "image", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceLinks", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "pushLink", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "PushLink", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commitLink", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "CommitLink", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PushLink", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "afterSha", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CommitLink", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GoogleCloudPlatformInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "KubernetesClusterInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ArtifactoryMavenRepositoryInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NpmJSRegistryProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "scope", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GitHubNpmRegistryProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceProviderStateInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceProviderStateName", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "error", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CredentialInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CredentialType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "oauth", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "OAuthInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "password", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "PasswordInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CredentialType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "OAuthToken", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Password", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OAuthInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scopes", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PasswordInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ResourceUserType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCMId", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GenericResourceUser", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SystemAccount", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubAppResourceUser", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SecretProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintInput", + "description": "For submitting new RepoFingerprints", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Optional data, such as dependency version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "Optional human readable string for this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayType", + "description": "Optional human readable string for the type (Aspect name) of this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": "Optional human readable string for the value of this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The unique name for this fingerprint, such as the name of a dependency", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "The hash of this fingerprint - forms ID of a SourceFingerprint", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintTargetInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "description": "Input object for creation of AtmJobTask", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Sets additional information about this AtmJobTask", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Sets the name for this AtmJobTask", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobInput", + "description": "The input object for the creation of a AtmJob", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Used to store additional information about this AtmJob", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "A description for this job.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initialState", + "description": "The initial state for the job. The default is running. Another option is preparing.", + "type": { + "kind": "ENUM", + "name": "AtmInitialJobState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobTasks", + "description": "The tasks for the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "maxRunningTasks", + "description": "The maximum number of running (in-flight) tasks. By default, all tasks will be in-flight from the time the job is created.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Sets the name for this job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "The owner of this job. Clients may use this in a subscription to avoid all clients subscribing to all tasks in a team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtmInitialJobState", + "description": "The initial state of an AtmJob", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "preparing", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "running", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskStateInput", + "description": "Input object for setting the state of a AtmJobTask", + "fields": null, + "inputFields": [ + { + "name": "message", + "description": "Sets additional information about the state of this AtmJobTask", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "Sets the AtmJobTaskState of this AtmJobState", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmTaskRequest", + "description": "The input object for proposing an offer of work", + "fields": null, + "inputFields": [ + { + "name": "jobId", + "description": "The id of the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "maxTaskCount", + "description": "The maxiumum number of tasks to get. Default is 1.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "taskTimeout", + "description": "After this amount of time the task will time out and be available for other workers to get this work", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "taskTimeoutUnit", + "description": "The units (seconds, minutes, hours) to use for the taskTimeout", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TimeUnit", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "worker", + "description": "Specify a name for the worker that is requesting this work", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TimeUnit", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "seconds", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minutes", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hours", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChannelLinked", + "description": "", + "fields": [ + { + "name": "chatTeamId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "description": "Auto generated input for type Card", + "fields": null, + "inputFields": [ + { + "name": "actionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "body", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "collaborators", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCollaboratorInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "comments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "correlations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCorrelationInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "events", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardEventInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "post", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "reactions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardReactionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repository", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shortTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardTitleInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "description": "Auto generated input for type CardActionGroup", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "description": "Auto generated input for type CardAction", + "fields": null, + "inputFields": [ + { + "name": "command", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "confirm", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionConfirmationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameterOptions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionConfirmationInput", + "description": "Auto generated input for type CardActionConfirmation", + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dismiss", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ok", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionGroupInput", + "description": "Auto generated input for type CardActionParameterOptionGroup", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "description": "Auto generated input for type CardActionParameterOption", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterInput", + "description": "Auto generated input for type CardActionParameter", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "description": "Auto generated input for type CardBody", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardCollaboratorInput", + "description": "Auto generated input for type CardCollaborator", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardCorrelationInput", + "description": "Auto generated input for type CardCorrelation", + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCorrelationBodyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shortTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCorrelationBodyInput", + "description": "Auto generated input for type CorrelationBody", + "fields": null, + "inputFields": [ + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardEventInput", + "description": "Auto generated input for type CardEvent", + "fields": null, + "inputFields": [ + { + "name": "actionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalSetInput", + "description": "Auto generated input for type CardSdmGoalSet", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "duration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goals", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalInput", + "description": "Auto generated input for type CardSdmGoal", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logLink", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardProvenanceInput", + "description": "Auto generated input for type CardProvenance", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardReactionInput", + "description": "Auto generated input for type CardReaction", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardRepositoryInput", + "description": "Auto generated input for type CardRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardTitleInput", + "description": "Auto generated input for type CardTitle", + "fields": null, + "inputFields": [ + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "description": "Auto generated input for type Notification", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "body", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "correlationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "post", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recipient", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationRecipientInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionInput", + "description": "Auto generated input for type NotificationAction", + "fields": null, + "inputFields": [ + { + "name": "command", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameterOptions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionGroupInput", + "description": "Auto generated input for type NotificationActionParameterOptionGroup", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "description": "Auto generated input for type NotificationActionParameterOption", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterInput", + "description": "Auto generated input for type NotificationActionParameter", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationRecipientInput", + "description": "Auto generated input for type NotificationRecipient", + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", + "description": "Auto generated input for type CommitIssueRelationship", + "fields": null, + "inputFields": [ + { + "name": "commit", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipCommitInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipCommitInput", + "description": "Auto generated input for type CommitIssueRelationshipCommit", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipIssueInput", + "description": "Auto generated input for type CommitIssueRelationshipIssue", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "description": "Auto generated input for type Deployment", + "fields": null, + "inputFields": [ + { + "name": "commit", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentCommitInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentCommitInput", + "description": "Auto generated input for type DeploymentCommit", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "description": "Auto generated input for type IssueRelationship", + "fields": null, + "inputFields": [ + { + "name": "relationshipId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "description": "Auto generated input for type IssueRelationshipIssue", + "fields": null, + "inputFields": [ + { + "name": "issue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "description": "Auto generated input for type SdmGoal", + "fields": null, + "inputFields": [ + { + "name": "approval", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "approvalRequired", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDescriptionsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "error", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrls", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmExternalUrlInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fulfillment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalFulfillmentInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preApproval", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preApprovalRequired", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preConditions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmConditionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "retryFeasible", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "description": "Auto generated input for type SdmProvenance", + "fields": null, + "inputFields": [ + { + "name": "channelId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "correlationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDescriptionsInput", + "description": "Auto generated input for type SdmGoalDescriptions", + "fields": null, + "inputFields": [ + { + "name": "canceled", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "failed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inProcess", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "planned", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "requested", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skipped", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stopped", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "waitingForApproval", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "waitingForPreApproval", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmExternalUrlInput", + "description": "Auto generated input for type SdmExternalUrl", + "fields": null, + "inputFields": [ + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalFulfillmentInput", + "description": "Auto generated input for type SdmGoalFulfillment", + "fields": null, + "inputFields": [ + { + "name": "method", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmConditionInput", + "description": "Auto generated input for type SdmCondition", + "fields": null, + "inputFields": [ + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "description": "Auto generated input for type SdmRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "description": "Auto generated input for type SdmGoalSet", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goals", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalNameInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tags", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetTagInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalNameInput", + "description": "Auto generated input for type SdmGoalName", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetTagInput", + "description": "Auto generated input for type SdmGoalSetTag", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "description": "Auto generated input for type SdmGoalDisplay", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "description": "Auto generated input for type SdmBuildIdentifier", + "fields": null, + "inputFields": [ + { + "name": "identifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "description": "Auto generated input for type SdmBuildIdentifierRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "description": "Auto generated input for type SdmDeployEnablement", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "description": "Auto generated input for type SdmVersion", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionRepositoryInput", + "description": "Auto generated input for type SdmVersionRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "description": "Auto generated input for type SdmGoalSetBadge", + "fields": null, + "inputFields": [ + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sdm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeRepositoryInput", + "description": "Auto generated input for type SdmGoalSetBadgeRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "description": "Auto generated input for type SdmPreference", + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "description": "Auto generated input for type SdmRepoProvenance", + "fields": null, + "inputFields": [ + { + "name": "provenance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "description": "Auto generated input for type PolicyLog", + "fields": null, + "inputFields": [ + { + "name": "apply", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomApplyPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manage", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomManageTargetPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribe", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomManageSubscriptionPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomApplyPolicyLogInput", + "description": "Auto generated input for type ApplyPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "_prId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "ApplyPolicyState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomManageTargetPolicyLogInput", + "description": "Auto generated input for type ManageTargetPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "action", + "description": null, + "type": { + "kind": "ENUM", + "name": "ManageTargetPolicyAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "author", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomManageSubscriptionPolicyLogInput", + "description": "Auto generated input for type ManageSubscriptionPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "action", + "description": null, + "type": { + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "author", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "description": "Auto generated input for type PolicyCompliance", + "fields": null, + "inputFields": [ + { + "name": "_branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aspects", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceAspectInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "differences", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceAspectInput", + "description": "Auto generated input for type PolicyComplianceAspect", + "fields": null, + "inputFields": [ + { + "name": "displayType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manageable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "description": "Auto generated input for type PolicyComplianceFingerprint", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "description": "Auto generated input for type PolicyTargetStream", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "description": "Auto generated input for type PolicyTarget", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streams", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomLifecycleAttachmentInput", + "description": "Auto generated input for type LifecycleAttachment", + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "configuration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skill", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "LifecycleAttachmentType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "description": "Auto generated input for type AspectRegistration", + "fields": null, + "inputFields": [ + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "endpoint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manageable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shortName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "AspectRegistrationState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "unit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uuid", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SlackChannel", + "description": "A slack channel", + "fields": [ + { + "name": "chatTeamId", + "description": "The id of the chat team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "The name of the channel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The id of the channel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OwnerLogin", + "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", + "fields": [ + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", + "description": "The id of the git provider for this Owner", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "The login that should be used", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RepoLogin", + "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", + "fields": [ + { + "name": "repo", + "description": "The repository name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", + "description": "The id of the git provider for this Owner", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "The login that should be used", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ + { + "name": "OnSchedule", + "description": "Subscribe to OnSchedule cron events", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OnSchedule", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Issue", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "action", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "numbers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "titles", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "bodys", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "createdAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "updatedAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "closedAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_IssueOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_IssueFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Comment", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "htmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentType", + "description": "", + "type": { + "kind": "ENUM", + "name": "CommentCommentType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "bodys", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "createdAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "updatedAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "commentIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitHubIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "paths", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "positions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "htmlUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "commentTypes", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommentCommentType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommentOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "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": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "default", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "defaults", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "colors", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_LabelOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "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": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owners", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repoIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitHubIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "defaultBranchs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_RepoOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Commit", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shas", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "messages", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Push", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PushOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PushFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Build", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildTrigger", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pullRequestNumber", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "finishedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "buildIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "numbers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "statuss", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "buildUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "compareUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "triggers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildTrigger", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "pullRequestNumbers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "startedAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "finishedAts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "workflowIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobNames", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "datas", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BuildOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Build", "ofType": null } }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomAspectRegistrationInput", - "description": "Auto generated input for type AspectRegistration", - "fields": null, - "inputFields": [ - { - "name": "category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "endpoint", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "manageable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "shortName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "ENUM", - "name": "AspectRegistrationState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "unit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uuid", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SlackChannel", - "description": "A slack channel", - "fields": [ - { - "name": "chatTeamId", - "description": "The id of the chat team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "The name of the channel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "The id of the channel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OwnerLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "fields": [ - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "The login that should be used", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RepoLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "fields": [ - { - "name": "repo", - "description": "The repository name", - "args": [], + "name": "Pipeline", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pipelineId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Status", + "description": "", + "type": { + "kind": "ENUM", + "name": "PipelineStatus", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], + "name": "Stage", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Stage", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], + "name": "Job", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "The login that should be used", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ - { - "name": "AtomistSkill", + "name": "Workflow", "description": "", "args": [ { - "name": "id", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "config", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "workflowIds", "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "name": "providers", + "description": "", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkill", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Issue", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "configs", "description": "", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_WorkflowOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "title", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "offset", "description": "", "type": { - "kind": "ENUM", - "name": "IssueState", + "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": "", + "args": [ { - "name": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "action", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -62144,7 +77017,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -62154,17 +77027,17 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "isRemote", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "remoteRepoHtmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -62188,21 +77061,21 @@ "defaultValue": null }, { - "name": "numbers", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -62216,7 +77089,7 @@ "defaultValue": null }, { - "name": "titles", + "name": "remoteRepoHtmlUrls", "description": "", "type": { "kind": "LIST", @@ -62230,77 +77103,112 @@ "defaultValue": null }, { - "name": "bodys", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_BranchOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "states", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "actions", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "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": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "createdAts", + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "updatedAts", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -62314,7 +77222,7 @@ "defaultValue": null }, { - "name": "closedAts", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -62335,7 +77243,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_DeletedBranchOrdering", "ofType": null } }, @@ -62377,7 +77285,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "DeletedBranch", "ofType": null } }, @@ -62385,7 +77293,7 @@ "deprecationReason": null }, { - "name": "Comment", + "name": "ChatId", "description": "", "args": [ { @@ -62399,7 +77307,7 @@ "defaultValue": null }, { - "name": "body", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -62409,7 +77317,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -62419,7 +77327,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -62429,7 +77337,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -62439,7 +77347,7 @@ "defaultValue": null }, { - "name": "commentId", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", @@ -62449,7 +77357,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -62459,7 +77367,7 @@ "defaultValue": null }, { - "name": "path", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -62469,7 +77377,7 @@ "defaultValue": null }, { - "name": "position", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -62479,7 +77387,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -62488,16 +77396,6 @@ }, "defaultValue": null }, - { - "name": "commentType", - "description": "", - "type": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - }, - "defaultValue": null - }, { "name": "ids", "description": "", @@ -62513,77 +77411,7 @@ "defaultValue": null }, { - "name": "bodys", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "createdAts", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "updatedAts", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "commentIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "gitHubIds", + "name": "screenNames", "description": "", "type": { "kind": "LIST", @@ -62597,7 +77425,7 @@ "defaultValue": null }, { - "name": "paths", + "name": "userIds", "description": "", "type": { "kind": "LIST", @@ -62611,7 +77439,7 @@ "defaultValue": null }, { - "name": "positions", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -62625,7 +77453,7 @@ "defaultValue": null }, { - "name": "htmlUrls", + "name": "timezoneLabels", "description": "", "type": { "kind": "LIST", @@ -62638,20 +77466,6 @@ }, "defaultValue": null }, - { - "name": "commentTypes", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", - "ofType": null - } - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -62660,7 +77474,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_ChatIdOrdering", "ofType": null } }, @@ -62702,7 +77516,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "ChatId", "ofType": null } }, @@ -62710,7 +77524,7 @@ "deprecationReason": null }, { - "name": "Label", + "name": "ChatChannel", "description": "", "args": [ { @@ -62734,7 +77548,7 @@ "defaultValue": null }, { - "name": "default", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -62744,7 +77558,17 @@ "defaultValue": null }, { - "name": "color", + "name": "normalizedName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -62753,6 +77577,36 @@ }, "defaultValue": null }, + { + "name": "isDefault", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "botInvitedSelf", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "archived", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "ids", "description": "", @@ -62782,7 +77636,7 @@ "defaultValue": null }, { - "name": "defaults", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -62796,7 +77650,21 @@ "defaultValue": null }, { - "name": "colors", + "name": "normalizedNames", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelIds", "description": "", "type": { "kind": "LIST", @@ -62817,7 +77685,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_LabelOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -62852,6 +77720,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_ChatChannelFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -62859,7 +77737,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Label", + "name": "ChatChannel", "ofType": null } }, @@ -62867,7 +77745,7 @@ "deprecationReason": null }, { - "name": "Repo", + "name": "PullRequest", "description": "", "args": [ { @@ -62881,7 +77759,17 @@ "defaultValue": null }, { - "name": "owner", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -62901,7 +77789,27 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "merged", "description": "", "type": { "kind": "SCALAR", @@ -62911,27 +77819,77 @@ "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "baseBranchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -62941,21 +77899,21 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "action", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null }, "defaultValue": null @@ -62975,21 +77933,21 @@ "defaultValue": null }, { - "name": "owners", + "name": "numbers", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "prIds", "description": "", "type": { "kind": "LIST", @@ -63003,7 +77961,7 @@ "defaultValue": null }, { - "name": "repoIds", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -63017,7 +77975,7 @@ "defaultValue": null }, { - "name": "gitHubIds", + "name": "bodys", "description": "", "type": { "kind": "LIST", @@ -63031,7 +77989,7 @@ "defaultValue": null }, { - "name": "defaultBranchs", + "name": "states", "description": "", "type": { "kind": "LIST", @@ -63045,118 +78003,105 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "timestamps", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", + "name": "baseBranchNames", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", + "name": "branchNames", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Commit", - "description": "", - "args": [ - { - "name": "id", + "name": "titles", "description": "", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "sha", + "name": "createdAts", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "message", + "name": "updatedAts", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamp", + "name": "closedAts", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "shas", + "name": "mergedAts", "description": "", "type": { "kind": "LIST", @@ -63170,28 +78115,28 @@ "defaultValue": null }, { - "name": "messages", + "name": "mergeStatuss", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null } }, "defaultValue": null }, { - "name": "timestamps", + "name": "actions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null } }, @@ -63205,7 +78150,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -63240,6 +78185,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -63247,7 +78202,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "PullRequest", "ofType": null } }, @@ -63255,7 +78210,7 @@ "deprecationReason": null }, { - "name": "Push", + "name": "Org", "description": "", "args": [ { @@ -63269,7 +78224,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -63279,11 +78234,11 @@ "defaultValue": null }, { - "name": "branch", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -63303,7 +78258,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -63317,14 +78272,14 @@ "defaultValue": null }, { - "name": "branchs", + "name": "ownerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, @@ -63338,7 +78293,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PushOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -63379,7 +78334,7 @@ "description": "", "type": { "kind": "INPUT_OBJECT", - "name": "_PushFilter", + "name": "_OrgFilter", "ofType": null }, "defaultValue": null @@ -63390,7 +78345,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Push", + "name": "Org", "ofType": null } }, @@ -63398,7 +78353,7 @@ "deprecationReason": null }, { - "name": "Build", + "name": "GitHubAppInstallation", "description": "", "args": [ { @@ -63412,57 +78367,7 @@ "defaultValue": null }, { - "name": "buildId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "status", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "compareUrl", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -63472,101 +78377,11 @@ "defaultValue": null }, { - "name": "trigger", + "name": "ownerType", "description": "", "type": { "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequestNumber", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "startedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "finishedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -63586,35 +78401,7 @@ "defaultValue": null }, { - "name": "buildIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "numbers", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -63628,147 +78415,108 @@ "defaultValue": null }, { - "name": "statuss", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "compareUrls", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "_GitHubAppInstallationOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "triggers", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "providers", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "pullRequestNumbers", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCMId", + "description": "", + "args": [ { - "name": "startedAts", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "finishedAts", + "name": "login", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "workflowIds", + "name": "avatar", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "jobNames", + "name": "logins", "description": "", "type": { "kind": "LIST", @@ -63782,7 +78530,7 @@ "defaultValue": null }, { - "name": "jobIds", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -63796,7 +78544,7 @@ "defaultValue": null }, { - "name": "datas", + "name": "avatars", "description": "", "type": { "kind": "LIST", @@ -63817,7 +78565,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -63859,7 +78607,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Build", + "name": "SCMId", "ofType": null } }, @@ -63867,21 +78615,11 @@ "deprecationReason": null }, { - "name": "Pipeline", + "name": "GitHubAppResourceUser", "description": "", "args": [ { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pipelineId", + "name": "id", "description": "", "type": { "kind": "SCALAR", @@ -63891,7 +78629,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -63901,69 +78639,19 @@ "defaultValue": null }, { - "name": "Status", - "description": "", - "type": { - "kind": "ENUM", - "name": "PipelineStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pipeline", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Stage", - "description": "", - "args": [ - { - "name": "_id", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppResourceUserOrdering", + "ofType": null + } }, "defaultValue": null }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Stage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Job", - "description": "", - "args": [ { "name": "_id", "description": "", @@ -63975,21 +78663,21 @@ "defaultValue": null }, { - "name": "name", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "jobId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null @@ -64000,7 +78688,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Job", + "name": "GitHubAppResourceUser", "ofType": null } }, @@ -64008,7 +78696,7 @@ "deprecationReason": null }, { - "name": "Workflow", + "name": "GitHubId", "description": "", "args": [ { @@ -64022,27 +78710,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -64052,7 +78720,7 @@ "defaultValue": null }, { - "name": "config", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -64062,49 +78730,7 @@ "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", + "name": "logins", "description": "", "type": { "kind": "LIST", @@ -64118,7 +78744,7 @@ "defaultValue": null }, { - "name": "configs", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -64139,7 +78765,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_WorkflowOrdering", + "name": "_GitHubIdOrdering", "ofType": null } }, @@ -64181,7 +78807,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Workflow", + "name": "GitHubId", "ofType": null } }, @@ -64189,7 +78815,7 @@ "deprecationReason": null }, { - "name": "Branch", + "name": "Tag", "description": "", "args": [ { @@ -64213,7 +78839,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -64223,17 +78849,17 @@ "defaultValue": null }, { - "name": "isRemote", + "name": "ref", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "remoteRepoHtmlUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -64271,7 +78897,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -64285,7 +78911,21 @@ "defaultValue": null }, { - "name": "remoteRepoHtmlUrls", + "name": "refs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -64306,7 +78946,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BranchOrdering", + "name": "_TagOrdering", "ofType": null } }, @@ -64341,6 +78981,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_TagFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -64348,7 +78998,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Branch", + "name": "Tag", "ofType": null } }, @@ -64356,19 +79006,9 @@ "deprecationReason": null }, { - "name": "DeletedBranch", + "name": "K8Pod", "description": "", "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": "", @@ -64380,7 +79020,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "phase", "description": "", "type": { "kind": "SCALAR", @@ -64390,120 +79030,47 @@ "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "timestamps", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_id", + "name": "environment", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "clusterName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeletedBranch", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChatId", - "description": "", - "args": [ + }, { - "name": "id", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "screenName", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", @@ -64513,7 +79080,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -64523,7 +79090,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -64533,7 +79100,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -64543,7 +79110,7 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "specsJSON", "description": "", "type": { "kind": "SCALAR", @@ -64553,7 +79120,7 @@ "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "envJSON", "description": "", "type": { "kind": "SCALAR", @@ -64563,7 +79130,7 @@ "defaultValue": null }, { - "name": "isAdmin", + "name": "metadataJSON", "description": "", "type": { "kind": "SCALAR", @@ -64573,41 +79140,41 @@ "defaultValue": null }, { - "name": "isBot", + "name": "containersCrashLoopBackOff", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "screenNames", + "name": "phases", "description": "", "type": { "kind": "LIST", @@ -64621,7 +79188,7 @@ "defaultValue": null }, { - "name": "userIds", + "name": "environments", "description": "", "type": { "kind": "LIST", @@ -64635,7 +79202,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -64649,7 +79216,7 @@ "defaultValue": null }, { - "name": "timezoneLabels", + "name": "baseNames", "description": "", "type": { "kind": "LIST", @@ -64663,162 +79230,63 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "namespaces", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "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": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", + "name": "statusJSONs", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "archived", + "name": "hosts", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", + "name": "states", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "specsJSONs", "description": "", "type": { "kind": "LIST", @@ -64832,7 +79300,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "envJSONs", "description": "", "type": { "kind": "LIST", @@ -64846,7 +79314,7 @@ "defaultValue": null }, { - "name": "normalizedNames", + "name": "metadataJSONs", "description": "", "type": { "kind": "LIST", @@ -64860,14 +79328,14 @@ "defaultValue": null }, { - "name": "channelIds", + "name": "resourceVersions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -64881,7 +79349,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatChannelOrdering", + "name": "_K8PodOrdering", "ofType": null } }, @@ -64916,6 +79384,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -64923,7 +79401,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "K8Pod", "ofType": null } }, @@ -64931,31 +79409,11 @@ "deprecationReason": null }, { - "name": "PullRequest", + "name": "K8Container", "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -64965,7 +79423,7 @@ "defaultValue": null }, { - "name": "name", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -64975,7 +79433,7 @@ "defaultValue": null }, { - "name": "body", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -64985,7 +79443,7 @@ "defaultValue": null }, { - "name": "state", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -64995,17 +79453,17 @@ "defaultValue": null }, { - "name": "merged", + "name": "clusterName", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "containerJSON", "description": "", "type": { "kind": "SCALAR", @@ -65015,7 +79473,7 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -65025,7 +79483,7 @@ "defaultValue": null }, { - "name": "branchName", + "name": "stateReason", "description": "", "type": { "kind": "SCALAR", @@ -65035,27 +79493,27 @@ "defaultValue": null }, { - "name": "title", + "name": "ready", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "restartCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -65065,17 +79523,17 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mergedAt", + "name": "containerID", "description": "", "type": { "kind": "SCALAR", @@ -65085,55 +79543,35 @@ "defaultValue": null }, { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "", - "type": { - "kind": "ENUM", - "name": "PullRequestAction", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "numbers", + "name": "imageNames", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "prIds", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -65147,7 +79585,7 @@ "defaultValue": null }, { - "name": "names", + "name": "environments", "description": "", "type": { "kind": "LIST", @@ -65161,7 +79599,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "containerJSONs", "description": "", "type": { "kind": "LIST", @@ -65189,7 +79627,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "stateReasons", "description": "", "type": { "kind": "LIST", @@ -65203,21 +79641,21 @@ "defaultValue": null }, { - "name": "baseBranchNames", + "name": "restartCounts", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "branchNames", + "name": "statusJSONs", "description": "", "type": { "kind": "LIST", @@ -65231,21 +79669,21 @@ "defaultValue": null }, { - "name": "titles", + "name": "resourceVersions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "createdAts", + "name": "containerIDs", "description": "", "type": { "kind": "LIST", @@ -65259,35 +79697,98 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_K8ContainerOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "closedAts", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "mergedAts", + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "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": "", + "args": [ + { + "name": "image", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "images", "description": "", "type": { "kind": "LIST", @@ -65301,28 +79802,28 @@ "defaultValue": null }, { - "name": "mergeStatuss", + "name": "imageNames", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "actions", + "name": "timestamps", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "PullRequestAction", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -65336,7 +79837,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_DockerImageOrdering", "ofType": null } }, @@ -65371,16 +79872,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -65388,7 +79879,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "DockerImage", "ofType": null } }, @@ -65396,21 +79887,11 @@ "deprecationReason": null }, { - "name": "Org", + "name": "ImageLinked", "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -65420,31 +79901,7 @@ "defaultValue": null }, { - "name": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owners", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -65457,20 +79914,6 @@ }, "defaultValue": null }, - { - "name": "ownerTypes", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -65479,7 +79922,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "_ImageLinkedOrdering", "ofType": null } }, @@ -65514,16 +79957,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -65531,7 +79964,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Org", + "name": "ImageLinked", "ofType": null } }, @@ -65539,7 +79972,7 @@ "deprecationReason": null }, { - "name": "GitHubAppInstallation", + "name": "Release", "description": "", "args": [ { @@ -65553,7 +79986,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -65563,11 +79996,11 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -65587,7 +80020,21 @@ "defaultValue": null }, { - "name": "owners", + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -65608,7 +80055,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubAppInstallationOrdering", + "name": "_ReleaseOrdering", "ofType": null } }, @@ -65650,7 +80097,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppInstallation", + "name": "Release", "ofType": null } }, @@ -65658,21 +80105,21 @@ "deprecationReason": null }, { - "name": "SCMId", + "name": "HerokuApp", "description": "", "args": [ { - "name": "id", + "name": "app", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "login", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -65682,7 +80129,7 @@ "defaultValue": null }, { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -65692,7 +80139,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "user", "description": "", "type": { "kind": "SCALAR", @@ -65702,7 +80149,27 @@ "defaultValue": null }, { - "name": "logins", + "name": "appId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "release", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apps", "description": "", "type": { "kind": "LIST", @@ -65716,7 +80183,7 @@ "defaultValue": null }, { - "name": "names", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -65730,7 +80197,49 @@ "defaultValue": null }, { - "name": "avatars", + "name": "timestamps", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "users", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "appIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "releases", "description": "", "type": { "kind": "LIST", @@ -65751,7 +80260,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_HerokuAppOrdering", "ofType": null } }, @@ -65793,7 +80302,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "HerokuApp", "ofType": null } }, @@ -65801,7 +80310,7 @@ "deprecationReason": null }, { - "name": "GitHubAppResourceUser", + "name": "Application", "description": "", "args": [ { @@ -65815,7 +80324,7 @@ "defaultValue": null }, { - "name": "login", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -65825,98 +80334,89 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "host", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubAppResourceUserOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "domain", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "data", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GitHubId", - "description": "", - "args": [ + }, { - "name": "id", + "name": "ids", "description": "", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "login", + "name": "states", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "hosts", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "logins", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -65930,7 +80430,21 @@ "defaultValue": null }, { - "name": "names", + "name": "domains", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -65951,7 +80465,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubIdOrdering", + "name": "_ApplicationOrdering", "ofType": null } }, @@ -65993,7 +80507,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubId", + "name": "Application", "ofType": null } }, @@ -66001,7 +80515,7 @@ "deprecationReason": null }, { - "name": "Tag", + "name": "Team", "description": "", "args": [ { @@ -66009,7 +80523,7 @@ "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -66035,7 +80549,7 @@ "defaultValue": null }, { - "name": "ref", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -66045,7 +80559,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -66062,7 +80576,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -66097,7 +80611,7 @@ "defaultValue": null }, { - "name": "refs", + "name": "iconUrls", "description": "", "type": { "kind": "LIST", @@ -66111,7 +80625,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "createdAts", "description": "", "type": { "kind": "LIST", @@ -66132,7 +80646,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_TeamOrdering", "ofType": null } }, @@ -66174,89 +80688,29 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "Team", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "K8Pod", - "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "phase", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "namespace", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + }, + { + "name": "ChatTeam", + "description": "", + "args": [ { - "name": "statusJSON", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -66266,7 +80720,7 @@ "defaultValue": null }, { - "name": "state", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -66276,7 +80730,7 @@ "defaultValue": null }, { - "name": "specsJSON", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -66286,7 +80740,7 @@ "defaultValue": null }, { - "name": "envJSON", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -66296,32 +80750,36 @@ "defaultValue": null }, { - "name": "metadataJSON", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "resourceVersion", + "name": "ids", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, @@ -66340,7 +80798,7 @@ "defaultValue": null }, { - "name": "phases", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -66354,7 +80812,7 @@ "defaultValue": null }, { - "name": "environments", + "name": "domains", "description": "", "type": { "kind": "LIST", @@ -66368,21 +80826,21 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "messageCounts", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, "defaultValue": null }, { - "name": "baseNames", + "name": "emailDomains", "description": "", "type": { "kind": "LIST", @@ -66396,77 +80854,122 @@ "defaultValue": null }, { - "name": "namespaces", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_ChatTeamOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "statusJSONs", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "hosts", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "states", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "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": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "specsJSONs", + "name": "forename", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "surname", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "envJSONs", + "name": "forenames", "description": "", "type": { "kind": "LIST", @@ -66480,7 +80983,7 @@ "defaultValue": null }, { - "name": "metadataJSONs", + "name": "surnames", "description": "", "type": { "kind": "LIST", @@ -66494,14 +80997,14 @@ "defaultValue": null }, { - "name": "resourceVersions", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -66515,7 +81018,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8PodOrdering", + "name": "_PersonOrdering", "ofType": null } }, @@ -66550,16 +81053,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -66567,7 +81060,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Pod", + "name": "Person", "ofType": null } }, @@ -66575,55 +81068,15 @@ "deprecationReason": null }, { - "name": "K8Container", + "name": "Status", "description": "", "args": [ { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -66632,14 +81085,14 @@ "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StatusState", "ofType": null }, "defaultValue": null }, { - "name": "stateReason", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -66649,27 +81102,7 @@ "defaultValue": null }, { - "name": "ready", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "restartCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "statusJSON", + "name": "targetUrl", "description": "", "type": { "kind": "SCALAR", @@ -66679,17 +81112,17 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "context", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "containerID", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -66699,35 +81132,35 @@ "defaultValue": null }, { - "name": "names", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "imageNames", + "name": "states", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StatusState", "ofType": null } }, "defaultValue": null }, { - "name": "timestamps", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -66741,7 +81174,7 @@ "defaultValue": null }, { - "name": "environments", + "name": "targetUrls", "description": "", "type": { "kind": "LIST", @@ -66755,7 +81188,7 @@ "defaultValue": null }, { - "name": "containerJSONs", + "name": "contexts", "description": "", "type": { "kind": "LIST", @@ -66769,7 +81202,7 @@ "defaultValue": null }, { - "name": "states", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -66783,70 +81216,85 @@ "defaultValue": null }, { - "name": "stateReasons", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_StatusOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "restartCounts", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "statusJSONs", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "resourceVersions", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "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": "CheckSuite", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "containerIDs", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -66860,7 +81308,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8ContainerOrdering", + "name": "_CheckSuiteOrdering", "ofType": null } }, @@ -66895,6 +81343,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CheckSuiteFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -66902,7 +81360,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Container", + "name": "CheckSuite", "ofType": null } }, @@ -66910,69 +81368,116 @@ "deprecationReason": null }, { - "name": "DockerImage", + "name": "CheckRun", "description": "", "args": [ { - "name": "image", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "imageName", + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CheckRunOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "images", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "imageNames", + "name": "filter", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "_CheckRunFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CheckRun", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Email", + "description": "", + "args": [ + { + "name": "address", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "addresss", "description": "", "type": { "kind": "LIST", @@ -66993,7 +81498,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_DockerImageOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -67035,7 +81540,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerImage", + "name": "Email", "ofType": null } }, @@ -67043,11 +81548,21 @@ "deprecationReason": null }, { - "name": "ImageLinked", + "name": "PushImpact", "description": "", "args": [ { - "name": "timestamp", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -67057,7 +81572,45 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "urls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -67078,7 +81631,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ImageLinkedOrdering", + "name": "_PushImpactOrdering", "ofType": null } }, @@ -67120,7 +81673,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ImageLinked", + "name": "PushImpact", "ofType": null } }, @@ -67128,7 +81681,7 @@ "deprecationReason": null }, { - "name": "Release", + "name": "PullRequestImpact", "description": "", "args": [ { @@ -67142,7 +81695,7 @@ "defaultValue": null }, { - "name": "name", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -67152,7 +81705,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -67176,7 +81729,7 @@ "defaultValue": null }, { - "name": "names", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -67190,7 +81743,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -67211,7 +81764,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ReleaseOrdering", + "name": "_PullRequestImpactOrdering", "ofType": null } }, @@ -67253,7 +81806,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Release", + "name": "PullRequestImpact", "ofType": null } }, @@ -67261,31 +81814,31 @@ "deprecationReason": null }, { - "name": "HerokuApp", + "name": "GitHubProvider", "description": "", "args": [ { - "name": "app", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "private", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -67295,7 +81848,7 @@ "defaultValue": null }, { - "name": "user", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -67305,7 +81858,7 @@ "defaultValue": null }, { - "name": "appId", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -67315,7 +81868,7 @@ "defaultValue": null }, { - "name": "release", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -67325,14 +81878,24 @@ "defaultValue": null }, { - "name": "apps", + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -67353,7 +81916,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -67367,7 +81930,7 @@ "defaultValue": null }, { - "name": "users", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -67381,7 +81944,7 @@ "defaultValue": null }, { - "name": "appIds", + "name": "gitUrls", "description": "", "type": { "kind": "LIST", @@ -67395,14 +81958,14 @@ "defaultValue": null }, { - "name": "releases", + "name": "providerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, @@ -67416,7 +81979,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_HerokuAppOrdering", + "name": "_GitHubProviderOrdering", "ofType": null } }, @@ -67458,7 +82021,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "HerokuApp", + "name": "GitHubProvider", "ofType": null } }, @@ -67466,9 +82029,19 @@ "deprecationReason": null }, { - "name": "Application", + "name": "SCMProvider", "description": "", "args": [ + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -67480,17 +82053,17 @@ "defaultValue": null }, { - "name": "state", + "name": "private", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -67500,7 +82073,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -67510,7 +82083,7 @@ "defaultValue": null }, { - "name": "domain", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -67520,7 +82093,7 @@ "defaultValue": null }, { - "name": "data", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -67529,6 +82102,16 @@ }, "defaultValue": null }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null + }, { "name": "ids", "description": "", @@ -67544,7 +82127,7 @@ "defaultValue": null }, { - "name": "states", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -67558,7 +82141,7 @@ "defaultValue": null }, { - "name": "hosts", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -67572,7 +82155,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -67586,7 +82169,7 @@ "defaultValue": null }, { - "name": "domains", + "name": "gitUrls", "description": "", "type": { "kind": "LIST", @@ -67600,14 +82183,14 @@ "defaultValue": null }, { - "name": "datas", + "name": "providerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, @@ -67621,7 +82204,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ApplicationOrdering", + "name": "_SCMProviderOrdering", "ofType": null } }, @@ -67663,7 +82246,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Application", + "name": "SCMProvider", "ofType": null } }, @@ -67671,7 +82254,7 @@ "deprecationReason": null }, { - "name": "Team", + "name": "GitHubAppResourceProvider", "description": "", "args": [ { @@ -67679,23 +82262,13 @@ "description": "", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -67705,21 +82278,38 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UserJoinedChannel", + "description": "", + "args": [ { - "name": "createdAt", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -67732,63 +82322,129 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_UserJoinedChannelOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "descriptions", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "iconUrls", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "createdAts", + "name": "offset", + "description": "", + "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": "Webhook", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChannelLink", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -67802,7 +82458,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TeamOrdering", + "name": "_ChannelLinkOrdering", "ofType": null } }, @@ -67844,7 +82500,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "ChannelLink", "ofType": null } }, @@ -67852,7 +82508,7 @@ "deprecationReason": null }, { - "name": "ChatTeam", + "name": "Review", "description": "", "args": [ { @@ -67866,7 +82522,7 @@ "defaultValue": null }, { - "name": "name", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -67876,7 +82532,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "reviewId", "description": "", "type": { "kind": "SCALAR", @@ -67886,7 +82542,7 @@ "defaultValue": null }, { - "name": "tenantId", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -67896,27 +82552,27 @@ "defaultValue": null }, { - "name": "domain", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ReviewState", "ofType": null }, "defaultValue": null }, { - "name": "messageCount", + "name": "submittedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "emailDomain", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -67940,7 +82596,7 @@ "defaultValue": null }, { - "name": "names", + "name": "gitHubIds", "description": "", "type": { "kind": "LIST", @@ -67954,7 +82610,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "reviewIds", "description": "", "type": { "kind": "LIST", @@ -67968,7 +82624,7 @@ "defaultValue": null }, { - "name": "domains", + "name": "bodys", "description": "", "type": { "kind": "LIST", @@ -67982,44 +82638,145 @@ "defaultValue": null }, { - "name": "messageCounts", + "name": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "submittedAts", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "htmlUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ReviewOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "emailDomains", + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "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": "DockerRegistryProvider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null }, "defaultValue": null }, @@ -68059,7 +82816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatTeam", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -68067,31 +82824,31 @@ "deprecationReason": null }, { - "name": "Person", + "name": "DockerHubRegistryProvider", "description": "", "args": [ { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "forename", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "surname", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -68101,91 +82858,151 @@ "defaultValue": null }, { - "name": "name", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "offset", "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "DockerHubRegistryProvider", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GoogleContainerRegistryProvider", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "forenames", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "surnames", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "names", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "offset", "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", + "kind": "OBJECT", + "name": "GoogleContainerRegistryProvider", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "JFrogDockerRegistryProvider", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -68212,43 +83029,51 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Person", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "JFrogDockerRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Status", + "name": "DockerRegistry", "description": "", "args": [ { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "id", "description": "", "type": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -68258,139 +83083,161 @@ "defaultValue": null }, { - "name": "targetUrl", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "context", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "DockerRegistry", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DockerRegistryImage", + "description": "", + "args": [ { - "name": "timestamp", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "states", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "descriptions", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "targetUrls", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "contexts", + "name": "filter", "description": "", "type": { - "kind": "LIST", + "kind": "INPUT_OBJECT", + "name": "_DockerRegistryImageFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DockerRegistryImage", "ofType": null } - }, - "defaultValue": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GoogleCloudPlatformProvider", + "description": "", + "args": [ { - "name": "timestamps", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -68417,65 +83264,65 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Status", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GoogleCloudPlatformProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Email", + "name": "KubernetesClusterProvider", "description": "", "args": [ { - "name": "address", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "addresss", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -68502,21 +83349,39 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PushImpact", + "name": "ArtifactoryMavenRepositoryProvider", "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -68528,7 +83393,7 @@ "defaultValue": null }, { - "name": "url", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -68538,77 +83403,151 @@ "defaultValue": null }, { - "name": "data", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "offset", "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "ArtifactoryMavenRepositoryProvider", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MavenRepositoryProvider", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "urls", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "datas", + "name": "name", "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "MavenRepositoryProvider", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NpmJSRegistryProvider", + "description": "", + "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushImpactOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -68635,43 +83574,51 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PushImpact", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NpmJSRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PullRequestImpact", + "name": "NpmRegistryProvider", "description": "", "args": [ { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -68681,67 +83628,76 @@ "defaultValue": null }, { - "name": "ids", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "urls", + "name": "offset", "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "NpmRegistryProvider", "ofType": null } - }, - "defaultValue": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubNpmRegistryProvider", + "description": "", + "args": [ { - "name": "datas", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestImpactOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -68768,12 +83724,20 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PullRequestImpact", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubNpmRegistryProvider", + "ofType": null + } + } } }, "isDeprecated": false, @@ -68861,7 +83825,7 @@ "deprecationReason": null }, { - "name": "GitHubProvider", + "name": "Resource", "description": "", "args": [ { @@ -68875,37 +83839,62 @@ "defaultValue": null }, { - "name": "private", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "providerId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Resource", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GenericResourceUser", + "description": "", + "args": [ { - "name": "apiUrl", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -68915,120 +83904,133 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "providerType", + "name": "_id", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null - }, - { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GenericResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ResourceUser", + "description": "", + "args": [ { - "name": "urls", + "name": "login", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "providerIds", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "apiUrls", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SystemAccount", + "description": "", + "args": [ { - "name": "gitUrls", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "providerTypes", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SystemAccount", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Credential", + "description": "", + "args": [ { - "name": "orderBy", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, @@ -69041,19 +84043,36 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OAuthToken", + "description": "", + "args": [ { - "name": "first", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "_id", "description": "", "type": { "kind": "SCALAR", @@ -69068,7 +84087,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubProvider", + "name": "OAuthToken", "ofType": null } }, @@ -69076,35 +84095,52 @@ "deprecationReason": null }, { - "name": "SCMProvider", + "name": "Password", "description": "", "args": [ { - "name": "authProviderId", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Password", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GenericResourceProvider", + "description": "", + "args": [ { - "name": "private", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null @@ -69120,7 +84156,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -69130,7 +84166,7 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "type", "description": "", "type": { "kind": "SCALAR", @@ -69140,120 +84176,89 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "providerType", + "name": "first", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", + "name": "offset", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GenericResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BinaryRepositoryProvider", + "description": "", + "args": [ { - "name": "apiUrls", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "gitUrls", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "providerTypes", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "BinaryRepositoryType", + "ofType": null }, "defaultValue": null }, @@ -69293,7 +84298,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "BinaryRepositoryProvider", "ofType": null } }, @@ -69301,9 +84306,19 @@ "deprecationReason": null }, { - "name": "GitHubAppResourceProvider", + "name": "SecretProvider", "description": "", "args": [ + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -69315,7 +84330,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -69325,7 +84340,17 @@ "defaultValue": null }, { - "name": "_id", + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -69336,19 +84361,27 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SecretProvider", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "DockerRegistryProvider", + "name": "CommitFingerprintImpact", "description": "", "args": [ { @@ -69362,7 +84395,7 @@ "defaultValue": null }, { - "name": "url", + "name": "type", "description": "", "type": { "kind": "SCALAR", @@ -69370,53 +84403,64 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitFingerprintImpact", "ofType": null - }, - "defaultValue": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtmJob", + "description": "Return AtmJobs", + "args": [ { - "name": "type", - "description": "", + "name": "id", + "description": "The id of the AtmJob to match", "type": { - "kind": "ENUM", - "name": "DockerRegistryType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "name", + "description": "The name of AtmJobs to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "owner", + "description": "The owner of AtmJobs to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "state", + "description": "The state of AtmJobs to match", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "AtmJobState", "ofType": null }, "defaultValue": null @@ -69426,21 +84470,25 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DockerRegistryProvider", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "GenericResourceProvider", - "description": "", + "name": "AtmJobTask", + "description": "Return AtmJobTasks", "args": [ { "name": "id", - "description": "", + "description": "The id of the AtmJobTask to match", "type": { "kind": "SCALAR", "name": "ID", @@ -69449,8 +84497,8 @@ "defaultValue": null }, { - "name": "url", - "description": "", + "name": "jobId", + "description": "The jobId of the AtmJobTask to match", "type": { "kind": "SCALAR", "name": "String", @@ -69460,7 +84508,7 @@ }, { "name": "name", - "description": "", + "description": "The name of AtmJobsTasks to match", "type": { "kind": "SCALAR", "name": "String", @@ -69469,8 +84517,8 @@ "defaultValue": null }, { - "name": "type", - "description": "", + "name": "owner", + "description": "The owner of the parent AtmJob", "type": { "kind": "SCALAR", "name": "String", @@ -69479,27 +84527,58 @@ "defaultValue": null }, { - "name": "_id", + "name": "state", + "description": "The state of AtmJobTasks to match", + "type": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtomistLog", + "description": "", + "args": [ + { + "name": "_after", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "_before", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "_first", "description": "", "type": { "kind": "SCALAR", @@ -69507,36 +84586,19 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericResourceProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BinaryRepositoryProvider", - "description": "", - "args": [ + }, { - "name": "id", + "name": "_offset", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "_orderBy", "description": "", "type": { "kind": "SCALAR", @@ -69546,7 +84608,17 @@ "defaultValue": null }, { - "name": "name", + "name": "_ordering", + "description": "", + "type": { + "kind": "ENUM", + "name": "_AtomistLogOrdering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", "description": "", "type": { "kind": "SCALAR", @@ -69556,127 +84628,211 @@ "defaultValue": null }, { - "name": "type", + "name": "category", "description": "", "type": { - "kind": "ENUM", - "name": "BinaryRepositoryType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "_id", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "level", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "offset", + "name": "message", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "BinaryRepositoryProvider", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistLog", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "UserJoinedChannel", - "description": "", + "name": "Card", + "description": "Auto-generated subscription for Card", "args": [ { - "name": "id", - "description": "", + "name": "key", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", - "description": "", + "name": "post", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "shortTitle", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "ts", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "ttl", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "type", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -69686,7 +84842,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UserJoinedChannel", + "name": "Card", "ofType": null } }, @@ -69694,87 +84850,66 @@ "deprecationReason": null }, { - "name": "Webhook", - "description": "", + "name": "Notification", + "description": "Auto-generated subscription for Notification", "args": [ { - "name": "id", - "description": "", + "name": "body", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "resourceProviderId", - "description": "", + "name": "contentType", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ChannelLink", - "description": "", - "args": [ + }, { - "name": "id", - "description": "", + "name": "correlationId", + "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ids", - "description": "", + "name": "key", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "post", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "SCALAR", "name": "Int", @@ -69783,22 +84918,47 @@ "defaultValue": null }, { - "name": "first", - "description": "", + "name": "ttl", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CommitIssueRelationship", + "description": "Auto-generated subscription for CommitIssueRelationship", + "args": [ { - "name": "offset", - "description": "", + "name": "type", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "ofType": null + } }, "defaultValue": null } @@ -69808,7 +84968,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChannelLink", + "name": "CommitIssueRelationship", "ofType": null } }, @@ -69816,96 +84976,130 @@ "deprecationReason": null }, { - "name": "Review", - "description": "", + "name": "Deployment", + "description": "Auto-generated subscription for Deployment", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", + "name": "environment", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "reviewId", - "description": "", + "name": "ts", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "IssueRelationship", + "description": "Auto-generated subscription for IssueRelationship", + "args": [ { - "name": "body", - "description": "", + "name": "relationshipId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", - "description": "", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "htmlUrl", - "description": "", + "name": "type", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "IssueRelationship", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmGoal", + "description": "Auto-generated subscription for SdmGoal", + "args": [ { - "name": "ids", - "description": "", + "name": "approvalRequired", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "gitHubIds", - "description": "", + "name": "branch", + "description": null, "type": { "kind": "LIST", "name": null, @@ -69918,8 +85112,8 @@ "defaultValue": null }, { - "name": "reviewIds", - "description": "", + "name": "data", + "description": null, "type": { "kind": "LIST", "name": null, @@ -69932,8 +85126,8 @@ "defaultValue": null }, { - "name": "bodys", - "description": "", + "name": "description", + "description": null, "type": { "kind": "LIST", "name": null, @@ -69946,22 +85140,22 @@ "defaultValue": null }, { - "name": "states", - "description": "", + "name": "environment", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ReviewState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "submittedAts", - "description": "", + "name": "error", + "description": null, "type": { "kind": "LIST", "name": null, @@ -69974,8 +85168,8 @@ "defaultValue": null }, { - "name": "htmlUrls", - "description": "", + "name": "externalKey", + "description": null, "type": { "kind": "LIST", "name": null, @@ -69988,365 +85182,226 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "externalUrl", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "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": "GenericResourceUser", - "description": "", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", + "name": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericResourceUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ResourceUser", - "description": "", - "args": [ - { - "name": "login", - "description": "", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "id", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SystemAccount", - "description": "", - "args": [ - { - "name": "id", - "description": "", + "name": "parameters", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SystemAccount", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KubernetesClusterProvider", - "description": "", - "args": [ - { - "name": "id", - "description": "", + "name": "phase", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "url", - "description": "", + "name": "preApprovalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "registration", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "retryFeasible", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "sha", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Credential", - "description": "", - "args": [ - { - "name": "id", - "description": "", + "name": "signature", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "state", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OAuthToken", - "description": "", - "args": [ + }, { - "name": "id", - "description": "", + "name": "ts", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "uniqueName", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Password", - "description": "", - "args": [ + }, { - "name": "id", - "description": "", + "name": "url", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "version", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null } @@ -70356,7 +85411,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Password", + "name": "SdmGoal", "ofType": null } }, @@ -70364,87 +85419,90 @@ "deprecationReason": null }, { - "name": "CommitFingerprintImpact", - "description": "", + "name": "SdmGoalSet", + "description": "Auto-generated subscription for SdmGoalSet", "args": [ { - "name": "id", - "description": "", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", - "description": "", + "name": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommitFingerprintImpact", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AtmJob", - "description": "Return AtmJobs", - "args": [ + }, { - "name": "id", - "description": "The id of the AtmJob to match", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "The name of AtmJobs to match", + "name": "sha", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": "The owner of AtmJobs to match", + "name": "state", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", - "description": "The state of AtmJobs to match", + "name": "ts", + "description": null, "type": { - "kind": "ENUM", - "name": "AtmJobState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null } @@ -70453,69 +85511,85 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmGoalSet", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AtmJobTask", - "description": "Return AtmJobTasks", + "name": "SdmGoalDisplay", + "description": "Auto-generated subscription for SdmGoalDisplay", "args": [ { - "name": "id", - "description": "The id of the AtmJobTask to match", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "jobId", - "description": "The jobId of the AtmJobTask to match", + "name": "format", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "The name of AtmJobsTasks to match", + "name": "sha", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": "The owner of the parent AtmJob", + "name": "state", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", - "description": "The state of AtmJobTasks to match", + "name": "ts", + "description": null, "type": { - "kind": "ENUM", - "name": "AtmJobTaskState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null } @@ -70524,226 +85598,204 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmGoalDisplay", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AtomistLog", - "description": "", + "name": "SdmBuildIdentifier", + "description": "Auto-generated subscription for SdmBuildIdentifier", "args": [ { - "name": "_after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_orderBy", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_ordering", - "description": "", + "name": "identifier", + "description": null, "type": { - "kind": "ENUM", - "name": "_AtomistLogOrdering", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmBuildIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmDeployEnablement", + "description": "Auto-generated subscription for SdmDeployEnablement", + "args": [ { - "name": "_search", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "category", - "description": "", + "name": "providerId", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "id", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "level", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmDeployEnablement", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmVersion", + "description": "Auto-generated subscription for SdmVersion", + "args": [ { - "name": "message", - "description": "", + "name": "branch", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "team_id", - "description": "", + "name": "sha", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "timestamp", - "description": "", + "name": "version", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistLog", - "ofType": null - } - } + "kind": "OBJECT", + "name": "SdmVersion", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CommitIssueRelationship", - "description": "Auto-generated subscription for CommitIssueRelationship", + "name": "SdmGoalSetBadge", + "description": "Auto-generated subscription for SdmGoalSetBadge", "args": [ { - "name": "type", + "name": "sdm", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "token", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -70755,7 +85807,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CommitIssueRelationship", + "name": "SdmGoalSetBadge", "ofType": null } }, @@ -70763,11 +85815,11 @@ "deprecationReason": null }, { - "name": "Deployment", - "description": "Auto-generated subscription for Deployment", + "name": "SdmPreference", + "description": "Auto-generated subscription for SdmPreference", "args": [ { - "name": "environment", + "name": "key", "description": null, "type": { "kind": "LIST", @@ -70781,7 +85833,7 @@ "defaultValue": null }, { - "name": "ts", + "name": "ttl", "description": null, "type": { "kind": "LIST", @@ -70793,6 +85845,20 @@ } }, "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -70800,7 +85866,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Deployment", + "name": "SdmPreference", "ofType": null } }, @@ -70808,11 +85874,27 @@ "deprecationReason": null }, { - "name": "IssueRelationship", - "description": "Auto-generated subscription for IssueRelationship", + "name": "SdmRepoProvenance", + "description": "Auto-generated subscription for SdmRepoProvenance", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmRepoProvenance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyLog", + "description": "Auto-generated subscription for PolicyLog", "args": [ { - "name": "relationshipId", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -70826,14 +85908,14 @@ "defaultValue": null }, { - "name": "state", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -70859,7 +85941,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "IssueRelationship", + "name": "PolicyLog", "ofType": null } }, @@ -70867,25 +85949,25 @@ "deprecationReason": null }, { - "name": "SdmGoal", - "description": "Auto-generated subscription for SdmGoal", + "name": "PolicyCompliance", + "description": "Auto-generated subscription for PolicyCompliance", "args": [ { - "name": "approvalRequired", + "name": "_branch", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "branch", + "name": "_owner", "description": null, "type": { "kind": "LIST", @@ -70899,7 +85981,7 @@ "defaultValue": null }, { - "name": "data", + "name": "_repo", "description": null, "type": { "kind": "LIST", @@ -70913,7 +85995,7 @@ "defaultValue": null }, { - "name": "description", + "name": "_sha", "description": null, "type": { "kind": "LIST", @@ -70927,7 +86009,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -70941,35 +86023,52 @@ "defaultValue": null }, { - "name": "error", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PolicyCompliaceState", "ofType": null } }, "defaultValue": null }, { - "name": "externalKey", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyCompliance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyTargetStream", + "description": "Auto-generated subscription for PolicyTargetStream", + "args": [ { - "name": "externalUrl", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -70981,9 +86080,26 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyTarget", + "description": "Auto-generated subscription for PolicyTarget", + "args": [ { - "name": "goalSet", + "name": "data", "description": null, "type": { "kind": "LIST", @@ -70997,7 +86113,7 @@ "defaultValue": null }, { - "name": "goalSetId", + "name": "displayName", "description": null, "type": { "kind": "LIST", @@ -71011,7 +86127,7 @@ "defaultValue": null }, { - "name": "name", + "name": "displayValue", "description": null, "type": { "kind": "LIST", @@ -71025,7 +86141,7 @@ "defaultValue": null }, { - "name": "parameters", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -71039,7 +86155,7 @@ "defaultValue": null }, { - "name": "phase", + "name": "sha", "description": null, "type": { "kind": "LIST", @@ -71053,21 +86169,21 @@ "defaultValue": null }, { - "name": "preApprovalRequired", + "name": "streams", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "registration", + "name": "type", "description": null, "type": { "kind": "LIST", @@ -71079,23 +86195,40 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyTarget", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LifecycleAttachment", + "description": "Auto-generated subscription for LifecycleAttachment", + "args": [ { - "name": "retryFeasible", + "name": "body", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "sha", + "name": "configuration", "description": null, "type": { "kind": "LIST", @@ -71109,7 +86242,7 @@ "defaultValue": null }, { - "name": "signature", + "name": "contentType", "description": null, "type": { "kind": "LIST", @@ -71123,35 +86256,35 @@ "defaultValue": null }, { - "name": "state", + "name": "identifier", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "name", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "uniqueName", + "name": "skill", "description": null, "type": { "kind": "LIST", @@ -71165,28 +86298,28 @@ "defaultValue": null }, { - "name": "url", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "version", + "name": "type", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "LifecycleAttachmentType", "ofType": null } }, @@ -71198,7 +86331,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoal", + "name": "LifecycleAttachment", "ofType": null } }, @@ -71206,11 +86339,11 @@ "deprecationReason": null }, { - "name": "SdmGoalSet", - "description": "Auto-generated subscription for SdmGoalSet", + "name": "AspectRegistration", + "description": "Auto-generated subscription for AspectRegistration", "args": [ { - "name": "branch", + "name": "category", "description": null, "type": { "kind": "LIST", @@ -71224,7 +86357,7 @@ "defaultValue": null }, { - "name": "goalSet", + "name": "description", "description": null, "type": { "kind": "LIST", @@ -71238,7 +86371,7 @@ "defaultValue": null }, { - "name": "goalSetId", + "name": "displayName", "description": null, "type": { "kind": "LIST", @@ -71252,7 +86385,7 @@ "defaultValue": null }, { - "name": "sha", + "name": "endpoint", "description": null, "type": { "kind": "LIST", @@ -71266,52 +86399,35 @@ "defaultValue": null }, { - "name": "state", + "name": "manageable", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "name", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoalSet", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SdmGoalDisplay", - "description": "Auto-generated subscription for SdmGoalDisplay", - "args": [ + }, { - "name": "branch", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -71325,21 +86441,35 @@ "defaultValue": null }, { - "name": "format", + "name": "shortName", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "SdmGoalDisplayFormat", + "name": "AspectRegistrationState", "ofType": null } }, "defaultValue": null }, { - "name": "sha", + "name": "unit", "description": null, "type": { "kind": "LIST", @@ -71353,28 +86483,28 @@ "defaultValue": null }, { - "name": "state", + "name": "url", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "uuid", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -71386,7 +86516,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalDisplay", + "name": "AspectRegistration", "ofType": null } }, @@ -71394,30 +86524,42 @@ "deprecationReason": null }, { - "name": "SdmBuildIdentifier", - "description": "Auto-generated subscription for SdmBuildIdentifier", - "args": [ - { - "name": "identifier", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "RepoOnboarded", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmBuildIdentifier", + "name": "RepoOnboarded", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OnSchedule", + "description": "A scheduled event for generic time-based triggering", + "fields": [ + { + "name": "configurationName", + "description": "The name of the configuration that fired this event", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -71425,72 +86567,168 @@ "deprecationReason": null }, { - "name": "SdmDeployEnablement", - "description": "Auto-generated subscription for SdmDeployEnablement", - "args": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repo", - "description": null, - "type": { - "kind": "LIST", + "name": "parameterName", + "description": "The parameterName that this schedule is associated with", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RepoOnboarded", + "description": "The data for an existing Repo has been loaded and is ready for querying", + "fields": [ + { + "name": "repo", + "description": "GitHub Repository", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__Type", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", + } + } + }, + "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": "ENUM", - "name": "SdmDeployState", + "kind": "OBJECT", + "name": "__Directive", "ofType": null } - }, - "defaultValue": 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": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement", + "kind": "ENUM", + "name": "__TypeKind", "ofType": null } }, @@ -71498,178 +86736,243 @@ "deprecationReason": null }, { - "name": "SdmVersion", - "description": "Auto-generated subscription for SdmVersion", + "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": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", + "name": "includeDeprecated", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmVersion", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmGoalSetBadge", - "description": "Auto-generated subscription for SdmGoalSetBadge", - "args": [ - { - "name": "sdm", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": 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": "OBJECT", - "name": "SdmGoalSetBadge", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmPreference", - "description": "Auto-generated subscription for SdmPreference", + "name": "enumValues", + "description": null, "args": [ { - "name": "key", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ttl", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", + "name": "includeDeprecated", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmPreference", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmRepoProvenance", - "description": "Auto-generated subscription for SdmRepoProvenance", + "name": "inputFields", + "description": null, "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmRepoProvenance", + "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 } }, @@ -71677,58 +86980,51 @@ "deprecationReason": null }, { - "name": "PolicyLog", - "description": "Auto-generated subscription for PolicyLog", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__InputValue", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyLog", + "name": "__Type", "ofType": null } }, @@ -71736,114 +87032,82 @@ "deprecationReason": null }, { - "name": "PolicyCompliance", - "description": "Auto-generated subscription for PolicyCompliance", - "args": [ - { - "name": "_branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PolicyCompliaceState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": 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": "LIST", + "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": "PolicyCompliance", + "name": "__Type", "ofType": null } }, @@ -71851,30 +87115,38 @@ "deprecationReason": null }, { - "name": "PolicyTargetStream", - "description": "Auto-generated subscription for PolicyTargetStream", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], "type": { - "kind": "LIST", + "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": "OBJECT", - "name": "PolicyTargetStream", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -71882,114 +87154,66 @@ "deprecationReason": null }, { - "name": "PolicyTarget", - "description": "Auto-generated subscription for PolicyTarget", - "args": [ - { - "name": "data", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "displayValue", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "streams", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": 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": "LIST", + "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": "OBJECT", - "name": "PolicyTarget", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -71997,537 +87221,360 @@ "deprecationReason": null }, { - "name": "SkillOutput", - "description": "Auto-generated subscription for SkillOutput", - "args": [ - { - "name": "_branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_repo", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "_sha", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "classifier", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "correlationId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orgParentId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "repoParentId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", + "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": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "__DirectiveLocation", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "LIST", + } + } + }, + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__InputValue", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintsForCommitsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "commitSha", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SkillOutput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "Card", - "description": "Auto-generated subscription for Card", - "args": [ - { - "name": "key", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "post", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "shortTitle", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ttl", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "repoId", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Card", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistDockerSkillResourcesLimit", + "description": "", + "fields": [ + { + "name": "cpu", + "description": "kubenetes like cpu units", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Notification", - "description": "Auto-generated subscription for Notification", - "args": [ - { - "name": "body", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "correlationId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "post", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ttl", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "memory", + "description": "memory in megabytes", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Notification", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistDockerSkillResourcesRequest", + "description": "", + "fields": [ + { + "name": "cpu", + "description": "kubenetes like cpu units", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AspectRegistration", - "description": "Auto-generated subscription for AspectRegistration", - "args": [ - { - "name": "category", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "displayName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "endpoint", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "manageable", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "shortName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AspectRegistrationState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "unit", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "uuid", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "memory", + "description": "memory in megabytes", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillBooleanParameterSpec", + "description": "", + "fields": [ + { + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AspectRegistration", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -72535,15 +87582,31 @@ "deprecationReason": null }, { - "name": "RepoOnboarded", + "name": "required", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RepoOnboarded", + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", "ofType": null } }, @@ -72552,25 +87615,63 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "RepoOnboarded", - "description": "The data for an existing Repo has been loaded and is ready for querying", + "name": "AtomistSkillBooleanParameterValue", + "description": "", "fields": [ { - "name": "repo", - "description": "GitHub Repository", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "spec", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "AtomistSkillBooleanParameterSpec", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -72579,49 +87680,47 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "name": "AtomistSkillChatChannelParameterValue", + "description": "", "fields": [ { - "name": "types", - "description": "A list of all types supported by this server.", + "name": "channelId", + "description": "", "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 - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "queryType", - "description": "The type that query operations will be rooted at.", + "name": "channelName", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -72629,48 +87728,32 @@ "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.", + "name": "chatTeamId", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "directives", - "description": "A list of all directives supported by this server.", + "name": "resourceProviderId", + "description": "", "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 - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, @@ -72684,19 +87767,19 @@ }, { "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.", + "name": "AtomistSkillChatChannelsParameterSpec", + "description": "", "fields": [ { - "name": "kind", - "description": null, + "name": "description", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -72704,8 +87787,8 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -72716,267 +87799,276 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "maxAllowed", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], + "name": "minRequired", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "interfaces", - "description": null, + "name": "required", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "possibleTypes", - "description": null, + "name": "visibility", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillChatChannelsParameterValue", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inputFields", - "description": null, + "name": "spec", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkillChatChannelsParameterSpec", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ofType", - "description": null, + "name": "value", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillChatChannelParameterValue", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], "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 - }, + "kind": "OBJECT", + "name": "AtomistSkillChoice", + "description": "", + "fields": [ { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", + "name": "text", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "__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.", + "name": "AtomistSkillDockerArtifact", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "args", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "command", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", - "description": null, + "name": "env", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkillEnvironmentVariable", + "ofType": null } } }, @@ -72984,15 +88076,15 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "image", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -73000,15 +88092,15 @@ "deprecationReason": null }, { - "name": "isDeprecated", - "description": null, + "name": "name", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -73016,8 +88108,20 @@ "deprecationReason": null }, { - "name": "deprecationReason", - "description": null, + "name": "resources", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "AtomistSkillDockerResources", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workingDir", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -73029,18 +88133,24 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillArtifact", + "ofType": null + } + ], "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.", + "name": "AtomistSkillEnvironmentVariable", + "description": "", "fields": [ { "name": "name", - "description": null, + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -73055,40 +88165,51 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "value", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillDockerResources", + "description": "", + "fields": [ { - "name": "type", - "description": null, + "name": "limit", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistDockerSkillResourcesLimit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", + "name": "request", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistDockerSkillResourcesRequest", "ofType": null }, "isDeprecated": false, @@ -73102,12 +88223,32 @@ }, { "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.", + "name": "AtomistSkillFileFilterParameterSpec", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -73122,8 +88263,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -73134,8 +88275,48 @@ "deprecationReason": null }, { - "name": "isDeprecated", - "description": null, + "name": "maxAllowed", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minRequired", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -73150,31 +88331,41 @@ "deprecationReason": null }, { - "name": "deprecationReason", - "description": null, + "name": "visibility", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], "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.", + "name": "AtomistSkillFileFilterParameterValue", + "description": "", "fields": [ { "name": "name", - "description": null, + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -73189,44 +88380,24 @@ "deprecationReason": null }, { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, + "name": "spec", + "description": "", "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 - } - } + "kind": "OBJECT", + "name": "AtomistSkillFileFilterParameterSpec", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", - "description": null, + "name": "value", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -73238,8 +88409,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__InputValue", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -73250,144 +88421,37 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "AtomistSkillFloatParameterSpec", + "description": "", + "fields": [ { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FingerprintsForCommitsInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "commitSha", + "name": "description", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -73397,46 +88461,47 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoId", + "name": "displayName", "description": "", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillBooleanParameterSpec", - "description": "", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "defaultValue", + "name": "maximum", "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "minimum", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": "", "args": [], "type": { @@ -73452,7 +88517,7 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "placeHolder", "description": "", "args": [], "type": { @@ -73464,7 +88529,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "required", "description": "", "args": [], "type": { @@ -73472,7 +88537,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -73480,15 +88545,15 @@ "deprecationReason": null }, { - "name": "required", + "name": "visibility", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", "ofType": null } }, @@ -73509,7 +88574,7 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillBooleanParameterValue", + "name": "AtomistSkillFloatParameterValue", "description": "", "fields": [ { @@ -73537,7 +88602,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillBooleanParameterSpec", + "name": "AtomistSkillFloatParameterSpec", "ofType": null } }, @@ -73553,7 +88618,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } }, @@ -73574,23 +88639,27 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillChoice", + "name": "AtomistSkillGCFArtifact", "description": "", "fields": [ { - "name": "description", + "name": "entryPoint", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", + "name": "memory", "description": "", "args": [], "type": { @@ -73598,7 +88667,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -73606,7 +88675,55 @@ "deprecationReason": null }, { - "name": "value", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "runtime", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillRuntime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeout", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", "description": "", "args": [], "type": { @@ -73623,13 +88740,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillArtifact", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistSkillFloatParameterSpec", + "name": "AtomistSkillIntParameterSpec", "description": "", "fields": [ { @@ -73638,7 +88761,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -73678,7 +88801,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -73690,7 +88813,7 @@ "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -73739,6 +88862,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -73754,7 +88893,7 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillFloatParameterValue", + "name": "AtomistSkillIntParameterValue", "description": "", "fields": [ { @@ -73782,7 +88921,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillFloatParameterSpec", + "name": "AtomistSkillIntParameterSpec", "ofType": null } }, @@ -73798,7 +88937,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } }, @@ -73819,17 +88958,25 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillIntParameterSpec", + "name": "AtomistSkillMultiChoiceParameterSpec", "description": "", "fields": [ { - "name": "defaultValue", + "name": "defaultValues", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null @@ -73863,7 +89010,7 @@ "deprecationReason": null }, { - "name": "maximum", + "name": "maxAllowed", "description": "", "args": [], "type": { @@ -73875,7 +89022,7 @@ "deprecationReason": null }, { - "name": "minimum", + "name": "minRequired", "description": "", "args": [], "type": { @@ -73903,13 +89050,21 @@ "deprecationReason": null }, { - "name": "placeHolder", + "name": "options", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillChoice", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null @@ -73929,6 +89084,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -73944,7 +89115,7 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillIntParameterValue", + "name": "AtomistSkillMultiChoiceParameterValues", "description": "", "fields": [ { @@ -73972,7 +89143,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillIntParameterSpec", + "name": "AtomistSkillMultiChoiceParameterSpec", "ofType": null } }, @@ -73987,9 +89158,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, @@ -74009,11 +89188,11 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillMultiChoiceParameterSpec", + "name": "AtomistSkillRepoFilterInclusionParameterValue", "description": "", "fields": [ { - "name": "defaultValues", + "name": "excludes", "description": "", "args": [], "type": { @@ -74023,8 +89202,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValueDetail", "ofType": null } } @@ -74033,57 +89212,103 @@ "deprecationReason": null }, { - "name": "description", + "name": "includes", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValueDetail", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValueDetail", + "description": "", + "fields": [ { - "name": "displayName", + "name": "ownerId", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "maxAllowed", + "name": "providerId", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "minRequired", + "name": "repoIds", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValue", + "description": "", + "fields": [ { "name": "name", "description": "", @@ -74101,35 +89326,31 @@ "deprecationReason": null }, { - "name": "options", + "name": "spec", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillChoice", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterSpec", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "required", + "name": "value", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterInclusionParameterValue", "ofType": null } }, @@ -74141,7 +89362,7 @@ "interfaces": [ { "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", + "name": "AtomistSkillParameterValue", "ofType": null } ], @@ -74150,11 +89371,11 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillMultiChoiceParameterValues", + "name": "AtomistSkillRepoFilterSpec", "description": "", "fields": [ { - "name": "name", + "name": "description", "description": "", "args": [], "type": { @@ -74170,15 +89391,27 @@ "deprecationReason": null }, { - "name": "spec", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillMultiChoiceParameterSpec", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -74186,24 +89419,16 @@ "deprecationReason": null }, { - "name": "value", + "name": "required", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, @@ -74214,7 +89439,7 @@ "interfaces": [ { "kind": "INTERFACE", - "name": "AtomistSkillParameterValue", + "name": "AtomistSkillParameterSpec", "ofType": null } ], @@ -74223,62 +89448,51 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillRepoFilterInclusionParameterValue", + "name": "AtomistSkillScheduleParameterSpec", "description": "", "fields": [ { - "name": "excludes", + "name": "defaultValue", "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillRepoFilterParameterValueDetail", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "includes", + "name": "description", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistSkillRepoFilterParameterValueDetail", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillRepoFilterParameterValueDetail", - "description": "", - "fields": [ + }, { - "name": "ownerId", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": "", "args": [], "type": { @@ -74294,7 +89508,7 @@ "deprecationReason": null }, { - "name": "providerId", + "name": "required", "description": "", "args": [], "type": { @@ -74302,7 +89516,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -74310,24 +89524,16 @@ "deprecationReason": null }, { - "name": "repoIds", + "name": "visibility", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null } }, "isDeprecated": false, @@ -74335,13 +89541,19 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistSkillRepoFilterParameterValue", + "name": "AtomistSkillScheduleParameterValue", "description": "", "fields": [ { @@ -74369,7 +89581,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillRepoFilterSpec", + "name": "AtomistSkillScheduleParameterSpec", "ofType": null } }, @@ -74385,7 +89597,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillRepoFilterInclusionParameterValue", + "name": "AtomistSkillScheduleParameterValueDetail", "ofType": null } }, @@ -74406,7 +89618,46 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillRepoFilterSpec", + "name": "AtomistSkillScheduleParameterValueDetail", + "description": "", + "fields": [ + { + "name": "cronExpression", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeZone", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillSecretParameterSpec", "description": "", "fields": [ { @@ -74438,15 +89689,15 @@ "deprecationReason": null }, { - "name": "name", + "name": "lineStyle", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillStringParameterLineStyle", "ofType": null } }, @@ -74454,52 +89705,7 @@ "deprecationReason": null }, { - "name": "required", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AtomistSkillParameterSpec", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSkillScheduleParameterSpec", - "description": "", - "fields": [ - { - "name": "defaultValue", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", + "name": "name", "description": "", "args": [], "type": { @@ -74515,19 +89721,7 @@ "deprecationReason": null }, { - "name": "displayName", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", + "name": "required", "description": "", "args": [], "type": { @@ -74535,7 +89729,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -74543,15 +89737,15 @@ "deprecationReason": null }, { - "name": "required", + "name": "visibility", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", "ofType": null } }, @@ -74572,7 +89766,7 @@ }, { "kind": "OBJECT", - "name": "AtomistSkillScheduleParameterValue", + "name": "AtomistSkillSecretParameterValue", "description": "", "fields": [ { @@ -74600,7 +89794,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistSkillScheduleParameterSpec", + "name": "AtomistSkillSecretParameterSpec", "ofType": null } }, @@ -74731,6 +89925,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -74929,6 +90139,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -75131,6 +90357,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -75209,40 +90451,23 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "_IssueFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "GenericSourceFingerprint", + "name": "AtomistSkillWebhookParameterSpec", "description": "", "fields": [ { - "name": "data", + "name": "description", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -75260,31 +90485,31 @@ "deprecationReason": null }, { - "name": "displayType", + "name": "maxAllowed", "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayValue", + "name": "minRequired", "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", + "name": "name", "description": "", "args": [], "type": { @@ -75292,7 +90517,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -75300,7 +90525,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "required", "description": "", "args": [], "type": { @@ -75308,7 +90533,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -75316,7 +90541,36 @@ "deprecationReason": null }, { - "name": "sha", + "name": "visibility", + "description": "", + "args": [], + "type": { + "kind": "ENUM", + "name": "AtomistSkillParameterVisiblity", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillWebhookParameterValue", + "description": "", + "fields": [ + { + "name": "name", "description": "", "args": [], "type": { @@ -75332,27 +90586,51 @@ "deprecationReason": null }, { - "name": "type", + "name": "spec", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillWebhookParameterSpec", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillWebhookParameterValueDetail", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [ { "kind": "INTERFACE", - "name": "SourceFingerprint", + "name": "AtomistSkillParameterValue", "ofType": null } ], @@ -75361,11 +90639,11 @@ }, { "kind": "OBJECT", - "name": "LeinDependency", + "name": "AtomistSkillWebhookParameterValueDetail", "description": "", "fields": [ { - "name": "artifact", + "name": "name", "description": "", "args": [], "type": { @@ -75380,6 +90658,60 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "url", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "KubernetesCluster", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GenericSourceFingerprint", + "description": "", + "fields": [ { "name": "data", "description": "", @@ -75491,22 +90823,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "version", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, diff --git a/lib/graphql/subscription/OnAnySkillOutput.graphql b/lib/graphql/subscription/OnAnySkillOutput.graphql deleted file mode 100644 index 0c7a3e4be..000000000 --- a/lib/graphql/subscription/OnAnySkillOutput.graphql +++ /dev/null @@ -1,14 +0,0 @@ -subscription OnAnySkillOutput { - SkillOutput { - classifier - skill { - name - version - } - type - uri - push { - ...PushFields - } - } -} diff --git a/test/core/goal/skillOutput.test.ts b/test/core/goal/skillOutput.test.ts deleted file mode 100644 index e8fd0835a..000000000 --- a/test/core/goal/skillOutput.test.ts +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Copyright © 2020 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 { guid } from "@atomist/automation-client/lib/internal/util/string"; -import { MutationOptions } from "@atomist/automation-client/src/lib/spi/graph/GraphClient"; -import * as assert from "power-assert"; -import { CacheOutputGoalDataKey } from "../../../lib/core/goal/cache/goalCaching"; -import { SkillOutputGoalExecutionListener } from "../../../lib/core/goal/skillOutput"; -import { SdmGoalState } from "../../../lib/typings/types"; - -describe("skillOutput", () => { - - const configuration = { - name: "test-skill", - version: "0.1.0", - } as any; - - const defaultGoalEvent = { - branch: "master", - sha: guid(), - repo: { - owner: "atomist", - name: "foo", - }, - push: { - repo: { - id: "repoId1234", - org: { - id: "ownerId1234", - }, - }, - }, - } as any; - - const defaultContext = { - correlationId: guid(), - workspaceId: "T123456", - graphClient: { - mutate: async () => { - assert.fail(); - }, - }, - } as any; - - const defaultOutput = { - [CacheOutputGoalDataKey]: [{ - type: "build", - uri: "https://gs.com/1.zip", - classifier: "T123456/build", - }, { - uri: "https://gs.com/2.zip", - classifier: "T123456/version", - }], - }; - - it("should correctly ignore failed goal with no output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: { - ...defaultGoalEvent, - state: SdmGoalState.failure, - }, - result: undefined, - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly ignore failed goal with output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: { - ...defaultGoalEvent, - state: SdmGoalState.failure, - data: JSON.stringify(defaultOutput), - }, - result: undefined, - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly ignore failed result with no output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: defaultGoalEvent, - result: { code: 1 }, - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly ignore failed result with output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: { - ...defaultGoalEvent, - data: JSON.stringify(defaultOutput), - }, - result: { state: SdmGoalState.failure }, - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly ignore error result with no output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: defaultGoalEvent, - error: new Error("test failed"), - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly ignore error result with output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: { - ...defaultGoalEvent, - data: JSON.stringify(defaultOutput), - }, - error: new Error("test failed"), - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly skip goal with no output in data", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: defaultGoalEvent, - result: undefined, - context: defaultContext, - configuration, - } as any); - }); - - it("should correctly store single skill output", async () => { - await SkillOutputGoalExecutionListener({ - goalEvent: { - ...defaultGoalEvent, - data: JSON.stringify(defaultOutput), - }, - context: { - ...defaultContext, - graphClient: { - mutate: async (opts: MutationOptions) => { - assert.deepStrictEqual(opts.variables.output, { - _branch: defaultGoalEvent.branch, - _owner: defaultGoalEvent.repo.owner, - _repo: defaultGoalEvent.repo.name, - _sha: defaultGoalEvent.sha, - classifier: defaultOutput[CacheOutputGoalDataKey][0].classifier.split("/")[1], - correlationId: defaultContext.correlationId, - orgParentId: defaultGoalEvent.push.repo.org.id, - repoParentId: defaultGoalEvent.push.repo.id, - skill: { - name: configuration.name, - version: configuration.version, - }, - type: "build", - uri: "https://gs.com/1.zip", - }); - }, - }, - }, - configuration, - } as any); - }); - -});