diff --git a/lib/goal/cache/CompressingGoalCache.ts b/lib/goal/cache/CompressingGoalCache.ts index 2586a489..d1b76f7d 100644 --- a/lib/goal/cache/CompressingGoalCache.ts +++ b/lib/goal/cache/CompressingGoalCache.ts @@ -14,7 +14,6 @@ * limitations under the License. */ -import { resolvePlaceholders } from "@atomist/automation-client/lib/configuration"; import { Deferred } from "@atomist/automation-client/lib/internal/util/Deferred"; import { guid } from "@atomist/automation-client/lib/internal/util/string"; import { GitProject } from "@atomist/automation-client/lib/project/git/GitProject"; @@ -25,7 +24,6 @@ import * as fs from "fs-extra"; import * as JSZip from "jszip"; import * as os from "os"; import * as path from "path"; -import { resolvePlaceholder } from "../../machine/yaml/resolvePlaceholder"; import { FileSystemGoalCacheArchiveStore } from "./FileSystemGoalCacheArchiveStore"; import { GoalCache } from "./goalCaching"; @@ -36,7 +34,7 @@ export interface GoalCacheArchiveStore { * @param classifier The classifier of the cache * @param archivePath The path of the archive to be stored. */ - store(gi: GoalInvocation, classifier: string, archivePath: string): Promise; + store(gi: GoalInvocation, classifier: string, archivePath: string): Promise; /** * Remove a compressed goal archive @@ -69,7 +67,10 @@ export class CompressingGoalCache implements GoalCache { private readonly method: CompressionMethod = CompressionMethod.TAR) { } - public async put(gi: GoalInvocation, project: GitProject, files: string[], classifier?: string): Promise { + public async put(gi: GoalInvocation, + project: GitProject, + files: string[], + classifier?: string): Promise { const archiveName = "atomist-cache"; const teamArchiveFileName = path.join(os.tmpdir(), `${archiveName}.${guid().slice(0, 7)}`); const slug = `${gi.id.owner}/${gi.id.repo}`; @@ -83,12 +84,12 @@ export class CompressingGoalCache implements GoalCache { const tarResult = await spawnLog("tar", ["-cf", teamArchiveFileName, ...files], spawnLogOpts); if (tarResult.code) { gi.progressLog.write(`Failed to create tar archive '${teamArchiveFileName}' for ${slug}`); - return; + return undefined; } const gzipResult = await spawnLog("gzip", ["-3", teamArchiveFileName], spawnLogOpts); if (gzipResult.code) { gi.progressLog.write(`Failed to gzip tar archive '${teamArchiveFileName}' for ${slug}`); - return; + return undefined; } teamArchiveFileNameWithSuffix += ".gz"; } else if (this.method === CompressionMethod.ZIP) { @@ -129,20 +130,17 @@ export class CompressingGoalCache implements GoalCache { await defer.promise; } } - const resolvedClassifier = await resolveClassifierPath(classifier, gi); - await this.store.store(gi, resolvedClassifier, teamArchiveFileNameWithSuffix); + return this.store.store(gi, classifier, teamArchiveFileNameWithSuffix); } public async remove(gi: GoalInvocation, classifier?: string): Promise { - const resolvedClassifier = await resolveClassifierPath(classifier, gi); - await this.store.delete(gi, resolvedClassifier); + await this.store.delete(gi, classifier); } public async retrieve(gi: GoalInvocation, project: GitProject, classifier?: string): Promise { const archiveName = "atomist-cache"; const teamArchiveFileName = path.join(os.tmpdir(), `${archiveName}.${guid().slice(0, 7)}`); - const resolvedClassifier = await resolveClassifierPath(classifier, gi); - await this.store.retrieve(gi, resolvedClassifier, teamArchiveFileName); + await this.store.retrieve(gi, classifier, teamArchiveFileName); if (fs.existsSync(teamArchiveFileName)) { if (this.method === CompressionMethod.TAR) { await spawnLog("tar", ["-xzf", teamArchiveFileName], { @@ -168,25 +166,3 @@ export class CompressingGoalCache implements GoalCache { } } - -/** - * Interpolate information from goal invocation into the classifier. - */ -export async function resolveClassifierPath(classifier: string | undefined, gi: GoalInvocation): Promise { - if (!classifier) { - return gi.context.workspaceId; - } - const wrapper = { classifier }; - await resolvePlaceholders(wrapper, v => resolvePlaceholder(v, gi.goalEvent, gi, {})); - return gi.context.workspaceId + "/" + sanitizeClassifier(wrapper.classifier); -} - -/** - * Sanitize classifier for use in path. Replace any characters - * which might cause problems on POSIX or MS Windows with "_", - * including path separators. Ensure resulting file is not "hidden". - */ -export function sanitizeClassifier(classifier: string): string { - return classifier.replace(/[^-.0-9A-Za-z_+]/g, "_") - .replace(/^\.+/, ""); // hidden -} diff --git a/lib/goal/cache/FileSystemGoalCacheArchiveStore.ts b/lib/goal/cache/FileSystemGoalCacheArchiveStore.ts index befed6c8..bf1da5c2 100644 --- a/lib/goal/cache/FileSystemGoalCacheArchiveStore.ts +++ b/lib/goal/cache/FileSystemGoalCacheArchiveStore.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -28,13 +28,14 @@ import { GoalCacheArchiveStore } from "./CompressingGoalCache"; export class FileSystemGoalCacheArchiveStore implements GoalCacheArchiveStore { private static readonly archiveName: string = "cache.tar.gz"; - public async store(gi: GoalInvocation, classifier: string, archivePath: string): Promise { + public async store(gi: GoalInvocation, classifier: string, archivePath: string): Promise { const cacheDir = await FileSystemGoalCacheArchiveStore.getCacheDirectory(gi, classifier); const archiveName = FileSystemGoalCacheArchiveStore.archiveName; const archiveFileName = path.join(cacheDir, archiveName); await spawnLog("mv", [archivePath, archiveFileName], { log: gi.progressLog, }); + return archiveFileName; } public async delete(gi: GoalInvocation, classifier: string): Promise { diff --git a/lib/goal/cache/NoOpGoalCache.ts b/lib/goal/cache/NoOpGoalCache.ts index 07a6f045..1f614d1b 100644 --- a/lib/goal/cache/NoOpGoalCache.ts +++ b/lib/goal/cache/NoOpGoalCache.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -24,8 +24,9 @@ import { GoalCache } from "./goalCaching"; * Cache implementation that doesn't cache anything and will always trigger the fallback. */ export class NoOpGoalCache implements GoalCache { - public async put(gi: GoalInvocation, project: GitProject, files: string[], classifier?: string): Promise { + public async put(gi: GoalInvocation, project: GitProject, files: string[], classifier?: string): Promise { logger.warn(`No-Op goal cache in use; no cache will be preserved!`); + return undefined; } public async remove(gi: GoalInvocation, classifier?: string): Promise { diff --git a/lib/goal/cache/goalCaching.ts b/lib/goal/cache/goalCaching.ts index 813fa391..824cb8b7 100644 --- a/lib/goal/cache/goalCaching.ts +++ b/lib/goal/cache/goalCaching.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -14,6 +14,7 @@ * limitations under the License. */ +import { resolvePlaceholders } from "@atomist/automation-client/lib/configuration"; import { DefaultExcludes } from "@atomist/automation-client/lib/project/fileGlobs"; import { GitProject } from "@atomist/automation-client/lib/project/git/GitProject"; import { Project } from "@atomist/automation-client/lib/project/Project"; @@ -27,6 +28,7 @@ import { import { PushTest } from "@atomist/sdm/lib/api/mapping/PushTest"; import { AnyPush } from "@atomist/sdm/lib/api/mapping/support/commonPushTests"; import * as _ from "lodash"; +import { resolvePlaceholder } from "../../machine/yaml/resolvePlaceholder"; import { toArray } from "../../util/misc/array"; import { CompressingGoalCache } from "./CompressingGoalCache"; @@ -46,8 +48,9 @@ export interface GoalCache { * @param p The project where the files (or directories) reside. * @param files The files (or directories) to be cached. * @param classifier An optional classifier to identify the set of files (or directories to be cached). + * @param type An optional output type */ - put(gi: GoalInvocation, p: GitProject, files: string | string[], classifier?: string): Promise; + put(gi: GoalInvocation, p: GitProject, files: string | string[], classifier?: string): Promise; /** * Retrieve files from the cache. @@ -109,7 +112,7 @@ export interface GoalCacheOptions extends GoalCacheCoreOptions { * files need to be cached between goal invocations, possibly * excluding paths using regular expressions. */ - entries: CacheEntry[]; + entries: Array; } /** @@ -146,9 +149,11 @@ export function cachePut(options: GoalCacheOptions, name: listenerName, listener: async (p: GitProject, gi: GoalInvocation): Promise => { + const { goalEvent } = gi; if (!!isCacheEnabled(gi) && !process.env.ATOMIST_ISOLATED_GOAL_INIT) { + const cloneEntries = _.cloneDeep(entries); const goalCache = cacheStore(gi); - for (const entry of entries) { + for (const entry of cloneEntries) { const files = []; if (isGlobFilePattern(entry.pattern)) { files.push(...(await getFilePathsThroughPattern(p, entry.pattern.globPattern))); @@ -156,17 +161,21 @@ export function cachePut(options: GoalCacheOptions, files.push(entry.pattern.directory); } if (!_.isEmpty(files)) { - await goalCache.put(gi, p, files, entry.classifier); + const resolvedClassifier = await resolveClassifierPath(entry.classifier, gi); + const uri = await goalCache.put(gi, p, files, resolvedClassifier); + if (!!resolvedClassifier && !!uri) { + entry.classifier = resolvedClassifier; + (entry as any).uri = uri; + } } } // Set outputs on the goal data - const { goalEvent } = gi; const data = JSON.parse(goalEvent.data || "{}"); const newData = { [CacheOutputGoalDataKey]: [ ...(data[CacheOutputGoalDataKey] || []), - ...entries, + ...cloneEntries, ], }; goalEvent.data = JSON.stringify({ @@ -198,6 +207,7 @@ async function pushTestSucceeds(pushTest: PushTest, gi: GoalInvocation, p: GitPr context: gi.context, preferences: gi.preferences, credentials: gi.credentials, + skill: gi.skill, }); } @@ -259,7 +269,8 @@ export function cacheRestore(options: GoalCacheRestoreOptions, const goalCache = cacheStore(gi); for (const c of classifiersToBeRestored) { try { - await goalCache.retrieve(gi, p, c); + const resolvedClassifier = await resolveClassifierPath(c, gi); + await goalCache.retrieve(gi, p, resolvedClassifier); } catch (e) { await invokeCacheMissListeners(optsToUse, p, gi, event); } @@ -320,7 +331,8 @@ export function cacheRemove(options: GoalCacheOptions, const goalCache = cacheStore(gi); for (const c of classifiersToBeRemoved) { - await goalCache.remove(gi, c); + const resolvedClassifier = await resolveClassifierPath(c, gi); + await goalCache.remove(gi, resolvedClassifier); } } }, @@ -346,3 +358,25 @@ function isCacheEnabled(gi: GoalInvocation): boolean { function cacheStore(gi: GoalInvocation): GoalCache { return _.get(gi.configuration, "sdm.cache.store", DefaultGoalCache); } + +/** + * Interpolate information from goal invocation into the classifier. + */ +export async function resolveClassifierPath(classifier: string | undefined, gi: GoalInvocation): Promise { + if (!classifier) { + return gi.context.workspaceId; + } + const wrapper = { classifier }; + await resolvePlaceholders(wrapper, v => resolvePlaceholder(v, gi.goalEvent, gi, {})); + return gi.context.workspaceId + "/" + sanitizeClassifier(wrapper.classifier); +} + +/** + * Sanitize classifier for use in path. Replace any characters + * which might cause problems on POSIX or MS Windows with "_", + * including path separators. Ensure resulting file is not "hidden". + */ +export function sanitizeClassifier(classifier: string): string { + return classifier.replace(/[^-.0-9A-Za-z_+]/g, "_") + .replace(/^\.+/, ""); // hidden +} diff --git a/lib/goal/container/k8s.ts b/lib/goal/container/k8s.ts index 0c56fb75..a45f6b72 100644 --- a/lib/goal/container/k8s.ts +++ b/lib/goal/container/k8s.ts @@ -59,6 +59,7 @@ import { import { SdmGoalState } from "../../typings/types"; import { toArray } from "../../util/misc/array"; import { + CacheEntry, CacheOutputGoalDataKey, cachePut, cacheRestore, @@ -374,7 +375,10 @@ export const scheduleK8sJob: ExecuteGoal = async gi => { const schedulableGoalEvent = await k8sFulfillmentCallback(gi.goal as Container, containerReg)(goalEvent, gi); const scheduleResult = await k8sScheduler.schedule({ ...gi, goalEvent: schedulableGoalEvent }); if (scheduleResult.code) { - return { ...scheduleResult, message: `Failed to schedule container goal ${uniqueName}: ${scheduleResult.message}` }; + return { + ...scheduleResult, + message: `Failed to schedule container goal ${uniqueName}: ${scheduleResult.message}`, + }; } schedulableGoalEvent.state = SdmGoalState.in_process; return schedulableGoalEvent; @@ -526,7 +530,7 @@ export function executeK8sJob(): ExecuteGoal { } } - const cacheEntriesToPut = [ + const cacheEntriesToPut: CacheEntry[] = [ ...(registration.output || []), ...((gi.parameters || {})[CacheOutputGoalDataKey] || []), ]; @@ -534,7 +538,19 @@ export function executeK8sJob(): ExecuteGoal { try { const project = GitCommandGitProject.fromBaseDir(id, projectDir, credentials, async () => { }); - const cp = cachePut({ entries: cacheEntriesToPut }); + const cp = cachePut({ + entries: cacheEntriesToPut.map(e => { + // Prevent the type on the entry to get passed along when goal actually failed + if (status.code !== 0) { + return { + classifier: e.classifier, + pattern: e.pattern, + }; + } else { + return e; + } + }), + }); await cp.listener(project, gi, GoalProjectListenerEvent.after); } catch (e) { const message = `Failed to put cache output from container: ${e.message}`; diff --git a/lib/goal/skillOutput.ts b/lib/goal/skillOutput.ts new file mode 100644 index 00000000..42dbf135 --- /dev/null +++ b/lib/goal/skillOutput.ts @@ -0,0 +1,72 @@ +/* + * 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 { GoalExecutionListener } from "@atomist/sdm/lib/api/listener/GoalStatusListener"; +import { SdmGoalState } from "@atomist/sdm/lib/typings/types"; +import { + CustomSkillOutputInput, + IngestSkillOutputMutation, + IngestSkillOutputMutationVariables, +} 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 = JSON.parse(goalEvent.data || "{}"); + 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/graphql/mutation/IngestSkillOutput.graphql b/lib/graphql/mutation/IngestSkillOutput.graphql new file mode 100644 index 00000000..a2526d14 --- /dev/null +++ b/lib/graphql/mutation/IngestSkillOutput.graphql @@ -0,0 +1,3 @@ +mutation IngestSkillOutput($output: CustomSkillOutputInput!) { + ingestCustomSkillOutput(value: $output) +} diff --git a/lib/graphql/schema.json b/lib/graphql/schema.json index ed7b3802..351275e9 100644 --- a/lib/graphql/schema.json +++ b/lib/graphql/schema.json @@ -16,7 +16,7 @@ "description": null, "fields": [ { - "name": "AtomistTeamSkill", + "name": "AtomistSkill", "description": "", "args": [ { @@ -35,19 +35,27 @@ } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistTeamSkill", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkill", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "teamSkills", + "name": "skills", "description": "", "args": [], "type": { @@ -8529,6 +8537,16 @@ }, "defaultValue": null }, + { + "name": "displayValue", + "description": "Restrict to this particular displayValue (type,name required)", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "Restrict to this fingerprint name", @@ -8572,6 +8590,59 @@ "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, + "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": "", @@ -8709,6 +8780,16 @@ }, "defaultValue": null }, + { + "name": "displayValue", + "description": "Restrict to this particular displayValue (type,name required)", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "Restrict to this fingerprint name", @@ -11806,12 +11887,12 @@ "deprecationReason": null }, { - "name": "Card", - "description": "Auto-generated query for Card", + "name": "SkillOutput", + "description": "Auto-generated query for SkillOutput", "args": [ { "name": "id", - "description": "The ID of this Card", + "description": "The ID of this SkillOutput", "type": { "kind": "SCALAR", "name": "ID", @@ -11890,7 +11971,7 @@ "defaultValue": null }, { - "name": "key", + "name": "_branch", "description": null, "type": { "kind": "LIST", @@ -11904,7 +11985,7 @@ "defaultValue": null }, { - "name": "post", + "name": "_owner", "description": null, "type": { "kind": "LIST", @@ -11918,7 +11999,7 @@ "defaultValue": null }, { - "name": "shortTitle", + "name": "_repo", "description": null, "type": { "kind": "LIST", @@ -11932,35 +12013,35 @@ "defaultValue": null }, { - "name": "ts", + "name": "_sha", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "ttl", + "name": "classifier", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "type", + "name": "correlationId", "description": null, "type": { "kind": "LIST", @@ -11972,146 +12053,23 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Card", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Notification", - "description": "Auto-generated query for Notification", - "args": [ - { - "name": "id", - "description": "The ID of this Notification", - "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": "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", + "name": "orgParentId", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "post", + "name": "repoParentId", "description": null, "type": { "kind": "LIST", @@ -12125,24 +12083,28 @@ "defaultValue": null }, { - "name": "ts", + "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ttl", + "name": "uri", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -12154,7 +12116,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Notification", + "name": "SkillOutput", "ofType": null } }, @@ -12162,12 +12124,368 @@ "deprecationReason": null }, { - "name": "AspectRegistration", - "description": "Auto-generated query for AspectRegistration", + "name": "Card", + "description": "Auto-generated query for Card", "args": [ { "name": "id", - "description": "The ID of this AspectRegistration", + "description": "The ID of this Card", + "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": "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 + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Card", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Notification", + "description": "Auto-generated query for Notification", + "args": [ + { + "name": "id", + "description": "The ID of this Notification", + "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": "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 + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Notification", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AspectRegistration", + "description": "Auto-generated query for AspectRegistration", + "args": [ + { + "name": "id", + "description": "The ID of this AspectRegistration", "type": { "kind": "SCALAR", "name": "ID", @@ -12669,7 +12987,7 @@ }, { "kind": "OBJECT", - "name": "AtomistTeamSkill", + "name": "AtomistSkill", "description": "", "fields": [ { @@ -12737,15 +13055,44 @@ "deprecationReason": null }, { - "name": "createdAt", + "name": "configuration", "description": "", - "args": [], + "args": [ + { + "name": "commitSha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "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 + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillConfiguration", "ofType": null } }, @@ -12753,7 +13100,31 @@ "deprecationReason": null }, { - "name": "description", + "name": "configurations", + "description": "", + "args": [], + "type": { + "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": "createdAt", "description": "", "args": [], "type": { @@ -12769,7 +13140,7 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "description", "description": "", "args": [], "type": { @@ -12785,21 +13156,33 @@ "deprecationReason": null }, { - "name": "enabled", + "name": "dispatchStyle", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "homepageUrl", "description": "", @@ -12841,7 +13224,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -12921,7 +13304,7 @@ "deprecationReason": null }, { - "name": "owner", + "name": "namespace", "description": "", "args": [], "type": { @@ -12929,7 +13312,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -12937,7 +13320,7 @@ "deprecationReason": null }, { - "name": "shared", + "name": "owner", "description": "", "args": [], "type": { @@ -12952,6 +13335,42 @@ "isDeprecated": false, "deprecationReason": null }, + { + "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": "readme", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "status", "description": "", @@ -13043,140 +13462,81 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillCategory", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "branch", + "name": "CI", "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Branch", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", + "name": "CD", "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", + "name": "SECURITY", "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AtomistSkill", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "AtomistSkill", - "description": "", - "fields": [ + }, { - "name": "author", + "name": "PRODUCTIVITY", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "categories", + "name": "CODE_REVIEW", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillCategory", - "ofType": null - } - } - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commands", + "name": "CODE_QUALITY", "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 - } - } - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", + "name": "CHAT", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistChatCommand", + "description": "", + "fields": [ { "name": "description", "description": "", @@ -13198,19 +13558,15 @@ "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 }, { - "name": "homepageUrl", + "name": "name", "description": "", "args": [], "type": { @@ -13226,7 +13582,7 @@ "deprecationReason": null }, { - "name": "iconUrl", + "name": "pattern", "description": "", "args": [], "type": { @@ -13240,9 +13596,20 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillConfiguration", + "description": "", + "fields": [ { - "name": "ingesters", + "name": "instances", "description": "", "args": [], "type": { @@ -13255,8 +13622,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillConfigurationInstance", "ofType": null } } @@ -13266,15 +13633,15 @@ "deprecationReason": null }, { - "name": "license", + "name": "repository", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtomistSkillConfigurationRepository", "ofType": null } }, @@ -13282,23 +13649,34 @@ "deprecationReason": null }, { - "name": "longDescription", + "name": "upgradePolicy", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillUpgradePolicy", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillConfigurationInstance", + "description": "", + "fields": [ { - "name": "name", + "name": "enabled", "description": "", "args": [], "type": { @@ -13306,7 +13684,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -13314,7 +13692,7 @@ "deprecationReason": null }, { - "name": "owner", + "name": "name", "description": "", "args": [], "type": { @@ -13322,7 +13700,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -13330,80 +13708,77 @@ "deprecationReason": null }, { - "name": "subscriptions", + "name": "parameters", "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": "INTERFACE", + "name": "AtomistSkillParameterValue", + "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": "INTERFACE", + "name": "AtomistSkillParameterValue", + "description": "", + "fields": [ { - "name": "technologies", + "name": "name", "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": "spec", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "videoUrl", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -13412,82 +13787,54 @@ "possibleTypes": [ { "kind": "OBJECT", - "name": "AtomistTeamSkill", + "name": "AtomistSkillBooleanParameterValue", "ofType": null }, { "kind": "OBJECT", - "name": "AtomistSharedSkill", + "name": "AtomistSkillFloatParameterValue", "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": "ENUM", - "name": "AtomistSkillCategory", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "CI", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillIntParameterValue", + "ofType": null }, { - "name": "CD", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillMultiChoiceParameterValues", + "ofType": null }, { - "name": "SECURITY", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValue", + "ofType": null }, { - "name": "PRODUCTIVITY", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillScheduleParameterValue", + "ofType": null }, { - "name": "CODE_REVIEW", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillSingleChoiceParameterValue", + "ofType": null }, { - "name": "CODE_QUALITY", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillStringArrayParameterValue", + "ofType": null }, { - "name": "CHAT", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "AtomistSkillStringParameterValue", + "ofType": null } - ], - "possibleTypes": null + ] }, { - "kind": "OBJECT", - "name": "AtomistChatCommand", + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", "description": "", "fields": [ { @@ -13506,6 +13853,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "name", "description": "", @@ -13523,7 +13882,7 @@ "deprecationReason": null }, { - "name": "pattern", + "name": "required", "description": "", "args": [], "type": { @@ -13531,7 +13890,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -13540,72 +13899,140 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, - "possibleTypes": 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": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, + "kind": "OBJECT", + "name": "AtomistSkillConfigurationRepository", + "description": "", + "fields": [ + { + "name": "commitSha", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "AtomistSkillTechnology", + "name": "AtomistSkillUpgradePolicy", "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "JAVA", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MAVEN", + "name": "LATEST_COMPATIBLE_BUILD", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "DOCKER", + "name": "LATEST_BUILD", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "JAVASCRIPT", + "name": "LATEST_COMPATIBLE_RELEASE", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "NPM", + "name": "LATEST_RELEASE", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "LEIN", + "name": "MANUAL", "description": "", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtomistSkillEventDispatchStyle", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "CLOJURE", + "name": "single", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "KUBERNETES", + "name": "multiple", "description": "", "isDeprecated": false, "deprecationReason": null @@ -13700,445 +14127,117 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Branch", - "description": "Branch-Node", - "fields": [ + "kind": "ENUM", + "name": "AtomistSkillTechnology", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "JAVA", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "MAVEN", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "DOCKER", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "JAVASCRIPT", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "NPM", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "isRemote", - "description": "isRemote of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "LEIN", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "CLOJURE", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Branch repo Repo", + "name": "KUBERNETES", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkills", + "description": "", + "fields": [ + { + "name": "configured", + "description": "", "args": [ { - "name": "id", + "name": "query", "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", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Branch commit Commit", - "args": [ - { - "name": "sha", - "description": "", - "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 + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistPagedSkills", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequests", - "description": "Branch pullRequests PullRequest", + "name": "visible", + "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", + "name": "query", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "AtomistPagedVisibleSkills", "ofType": null } }, @@ -14152,130 +14251,249 @@ "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.", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillsSearchInput", + "description": "", "fields": null, - "inputFields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "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": "OBJECT", - "name": "Repo", - "description": "Repo-Node", + "name": "AtomistPagedSkills", + "description": "", "fields": [ { - "name": "_id", + "name": "skills", "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": "OBJECT", + "name": "AtomistSkill", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistPagedVisibleSkills", + "description": "", + "fields": [ { - "name": "url", + "name": "skills", "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": "AtomistVisibleSkill", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistVisibleSkill", + "description": "", + "fields": [ { - "name": "id", + "name": "artifacts", "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": "OBJECT", + "name": "AtomistSkillArtifact", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", + "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": "name", + "name": "categories", "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": "AtomistSkillCategory", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allowRebaseMerge", + "name": "commands", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "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": "allowSquashMerge", + "name": "createdAt", "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": "allowMergeCommit", + "name": "description", "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": "repoId", + "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 }, { - "name": "gitHubId", + "name": "displayName", "description": "", "args": [], "type": { @@ -14287,102 +14505,47 @@ "deprecationReason": null }, { - "name": "defaultBranch", + "name": "homepageUrl", "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": "labels", + "name": "iconUrl", "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": "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 + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Label", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -14390,130 +14553,39 @@ "deprecationReason": null }, { - "name": "channels", + "name": "ingesters", "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", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", + "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": "archived", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "license", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -14521,217 +14593,63 @@ "deprecationReason": null }, { - "name": "org", + "name": "longDescription", "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": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "Org", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "issue", + "name": "namespace", "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": "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": "", - "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 + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Issue", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -14739,8 +14657,487 @@ "deprecationReason": null }, { - "name": "issues", + "name": "parameterSpecs", "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": "readme", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "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": "version", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "videoUrl", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillArtifact", + "description": "", + "fields": [ + { + "name": "entryPoint", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kind", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillArtifactKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "memory", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "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": { + "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": "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": "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": "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", + "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", @@ -14753,17 +15150,17 @@ "defaultValue": null }, { - "name": "number", + "name": "forename", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -14773,51 +15170,41 @@ "defaultValue": null }, { - "name": "names", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_PersonOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "title", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -14825,29 +15212,36 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "action", - "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": "createdAt", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -14864,7 +15258,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -14891,11 +15285,11 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -14906,7 +15300,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "Org", "ofType": null } }, @@ -14914,8 +15308,8 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "", + "name": "providers", + "description": "Team providers GitHubProvider", "args": [ { "name": "id", @@ -14928,121 +15322,7 @@ "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", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -15052,7 +15332,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -15062,7 +15342,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -15072,7 +15352,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -15082,45 +15362,11 @@ "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", + "name": "providerType", "description": "", "type": { "kind": "ENUM", - "name": "MergeStatus", + "name": "ProviderType", "ofType": null }, "defaultValue": null @@ -15131,7 +15377,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "GitHubProvider", "ofType": null } }, @@ -15139,7 +15385,7 @@ "deprecationReason": null }, { - "name": "pullRequests", + "name": "resourceProviders", "description": "", "args": [ { @@ -15153,87 +15399,7 @@ "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", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -15241,19 +15407,36 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scmProviders", + "description": "Team scmProviders SCMProvider", + "args": [ { - "name": "title", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -15263,7 +15446,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -15273,7 +15456,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -15283,7 +15466,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -15300,7 +15483,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_SCMProviderOrdering", "ofType": null } }, @@ -15327,11 +15510,11 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "providerType", "description": "", "type": { "kind": "ENUM", - "name": "MergeStatus", + "name": "ProviderType", "ofType": null }, "defaultValue": null @@ -15342,7 +15525,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "SCMProvider", "ofType": null } }, @@ -15350,82 +15533,41 @@ "deprecationReason": null }, { - "name": "pushes", - "description": "", + "name": "chatTeams", + "description": "Team chatTeams ChatTeam", "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "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": "Push", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branches", - "description": "Repo branches Branch", - "args": [ - { - "name": "id", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -15435,7 +15577,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -15445,11 +15587,11 @@ "defaultValue": null }, { - "name": "isRemote", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null }, "defaultValue": null @@ -15462,7 +15604,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BranchOrdering", + "name": "_ChatTeamOrdering", "ofType": null } }, @@ -15489,7 +15631,7 @@ "defaultValue": null }, { - "name": "remoteRepoHtmlUrl", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -15504,7 +15646,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Branch", + "name": "ChatTeam", "ofType": null } }, @@ -15512,49 +15654,15 @@ "deprecationReason": null }, { - "name": "links", - "description": "Repo links ChannelLink", + "name": "configuration", + "description": "", "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", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -15565,7 +15673,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChannelLink", + "name": "TeamConfiguration", "ofType": null } }, @@ -15580,8 +15688,8 @@ }, { "kind": "ENUM", - "name": "_LabelOrdering", - "description": "Ordering Enum for Label", + "name": "_PersonOrdering", + "description": "Ordering Enum for Person", "fields": null, "inputFields": null, "interfaces": null, @@ -15611,38 +15719,38 @@ "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "forename_asc", + "description": "Ascending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "forename_desc", + "description": "Descending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "default_asc", - "description": "Ascending sort for default", + "name": "surname_asc", + "description": "Ascending sort for surname", "isDeprecated": false, "deprecationReason": null }, { - "name": "default_desc", - "description": "Descending sort for default", + "name": "surname_desc", + "description": "Descending sort for surname", "isDeprecated": false, "deprecationReason": null }, { - "name": "color_asc", - "description": "Ascending sort for color", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "color_desc", - "description": "Descending sort for color", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null } @@ -15651,8 +15759,8 @@ }, { "kind": "OBJECT", - "name": "Label", - "description": "Label-Node", + "name": "Person", + "description": "Person-Node", "fields": [ { "name": "_id", @@ -15666,21 +15774,9 @@ "isDeprecated": false, "deprecationReason": null }, - { - "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", + "description": "id of Person", "args": [], "type": { "kind": "SCALAR", @@ -15691,8 +15787,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of Label", + "name": "forename", + "description": "forename of Person", "args": [], "type": { "kind": "SCALAR", @@ -15703,8 +15799,8 @@ "deprecationReason": null }, { - "name": "default", - "description": "default of Label", + "name": "surname", + "description": "surname of Person", "args": [], "type": { "kind": "SCALAR", @@ -15715,8 +15811,8 @@ "deprecationReason": null }, { - "name": "color", - "description": "color of Label", + "name": "name", + "description": "name of Person", "args": [], "type": { "kind": "SCALAR", @@ -15727,21 +15823,38 @@ "deprecationReason": null }, { - "name": "repo", - "description": "Label repo Repo", + "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": "owner", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -15761,37 +15874,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": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -15799,9 +15882,22 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId", + "description": "Person gitHubId GitHubId", + "args": [ { - "name": "gitHubId", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -15811,7 +15907,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -15823,253 +15919,15 @@ ], "type": { "kind": "OBJECT", - "name": "Repo", - "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", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName_asc", - "description": "Ascending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName_desc", - "description": "Descending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId_asc", - "description": "Ascending sort for channelId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId_desc", - "description": "Descending sort for channelId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault_asc", - "description": "Ascending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault_desc", - "description": "Descending sort for isDefault", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf_asc", - "description": "Ascending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf_desc", - "description": "Descending sort for botInvitedSelf", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived_asc", - "description": "Ascending sort for archived", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived_desc", - "description": "Descending sort for archived", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChatChannel", - "description": "ChatChannel-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channelId", - "description": "channelId of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDefault", - "description": "isDefault of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived", - "description": "archived of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "GitHubId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdBy", - "description": "ChatChannel createdBy ChatId", + "name": "chatId", + "description": "Person chatId ChatId", "args": [ { "name": "id", @@ -16181,89 +16039,9 @@ "deprecationReason": null }, { - "name": "repos", - "description": "ChatChannel repos Repo", + "name": "emails", + "description": "Person 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": "", @@ -16272,7 +16050,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -16299,7 +16077,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -16314,68 +16092,7 @@ "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": "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 - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", + "name": "Email", "ofType": null } }, @@ -16383,22 +16100,12 @@ "deprecationReason": null }, { - "name": "members", - "description": "ChatChannel members ChatId", + "name": "team", + "description": "Person team Team", "args": [ { "name": "id", "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "screenName", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -16407,27 +16114,7 @@ "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", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -16437,7 +16124,7 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -16447,7 +16134,7 @@ "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -16457,61 +16144,7 @@ "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", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -16521,12 +16154,35 @@ "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": "ChatId", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -16534,8 +16190,48 @@ "deprecationReason": null }, { - "name": "team", - "description": "ChatChannel team ChatTeam", + "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": [ { "name": "id", @@ -16546,162 +16242,210 @@ "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 } ], "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "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": null, "enumValues": null, - "possibleTypes": 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 + } + ] }, { - "kind": "OBJECT", - "name": "ChatId", - "description": "ChatId-Node", + "kind": "INTERFACE", + "name": "Credential", + "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": "internal node id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "id of ChatId", + "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": "screenName", - "description": "screenName of ChatId", + "name": "owner", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null }, { - "name": "userId", - "description": "userId of ChatId", + "kind": "OBJECT", + "name": "Password", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "description": "", + "fields": [ + { + "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isOwner", - "description": "isOwner of ChatId", + "name": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -16712,20 +16456,24 @@ "deprecationReason": null }, { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", + "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": "isAdmin", - "description": "isAdmin of ChatId", + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -16736,32 +16484,32 @@ "deprecationReason": null }, { - "name": "isBot", - "description": "isBot of ChatId", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "ChatId channels ChatChannel", + "name": "webhooks", + "description": "", "args": [ { "name": "id", @@ -16772,110 +16520,6 @@ "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": "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", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -16883,34 +16527,215 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Webhook", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "emails", - "description": "ChatId emails Email", - "args": [ - { - "name": "address", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } + ], + "inputFields": null, + "interfaces": null, + "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 + } + ] + }, + { + "kind": "OBJECT", + "name": "ResourceProviderState", + "description": "", + "fields": [ + { + "name": "error", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], + "type": { + "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": "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": "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": "Email", + "name": "AtomistKeyValuePair", "ofType": null } }, @@ -16918,8 +16743,220 @@ "deprecationReason": null }, { - "name": "chatTeam", - "description": "ChatId chatTeam ChatTeam", + "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": "SCMId", + "description": "SCMId-Node", + "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": "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": "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", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatar", + "description": "avatar of SCMId", + "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": "id", @@ -16930,59 +16967,60 @@ "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 - }, + } + ], + "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": "tenantId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_EmailOrdering", + "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": "address", "description": "", "type": { "kind": "SCALAR", @@ -16993,16 +17031,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Email", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channelsCreated", - "description": "ChatId channelsCreated ChatChannel", + "name": "person", + "description": "SCMId person Person", "args": [ { "name": "id", @@ -17015,7 +17057,7 @@ "defaultValue": null }, { - "name": "name", + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -17025,7 +17067,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -17035,7 +17077,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -17043,54 +17085,43 @@ "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 } ], + "type": { + "kind": "OBJECT", + "name": "Person", + "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", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17098,68 +17129,87 @@ "deprecationReason": null }, { - "name": "person", - "description": "ChatId 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 + "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": "Person", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preferences", - "description": "Return a user's preferences", + "name": "owner", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "UserPreference", + "name": "SCMId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scopes", + "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": "secret", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -17168,30 +17218,84 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Email", - "description": "Email-Node", + "name": "SCMProvider", + "description": "SCMProvider-Node", "fields": [ + { + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "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": "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": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "address", - "description": "address of Email", + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17202,97 +17306,117 @@ "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": "providerId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "private", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "SCMId", + "kind": "SCALAR", + "name": "Boolean", "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": "apiUrl", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitUrl", + "description": "", + "args": [], + "type": { + "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": "targetConfiguration", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "GitHubId", + "name": "SCMProviderSpec", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatId", - "description": "Email chatId ChatId", + "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": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "screenName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -17302,7 +17426,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -17312,7 +17436,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -17322,7 +17446,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -17330,9 +17454,26 @@ "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": "isOwner", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -17342,57 +17483,89 @@ "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_OrgOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "isAdmin", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isBot", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "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", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "ChatId", + "name": "OAuthToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "Email person Person", + "name": "webhooks", + "description": "", "args": [ { "name": "id", @@ -17403,42 +17576,122 @@ "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 + } + ], + "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": "github_com", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ghe", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bitbucket", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitlab", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SCMProviderSpec", + "description": "", + "fields": [ + { + "name": "orgSpecs", + "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", + "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 @@ -17451,15 +17704,15 @@ }, { "kind": "OBJECT", - "name": "SCMId", - "description": "SCMId-Node", + "name": "SCMProviderRepoSpec", + "description": "", "fields": [ { - "name": "_typenames", + "name": "ownerSpec", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -17471,7 +17724,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "nameSpec", "description": "", "args": [], "type": { @@ -17479,16 +17732,109 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_OrgOrdering", + "description": "Ordering Enum for Org", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_asc", + "description": "Ascending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_desc", + "description": "Descending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType_asc", + "description": "Ascending sort for ownerType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType_desc", + "description": "Descending sort for ownerType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OwnerType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "user", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, + { + "name": "organization", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Org", + "description": "", + "fields": [ { "name": "_id", - "description": "internal node id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17499,24 +17845,32 @@ "deprecationReason": null }, { - "name": "login", - "description": "login of SCMId", + "name": "url", + "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 }, { - "name": "name", - "description": "name of SCMId", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17527,8 +17881,20 @@ "deprecationReason": null }, { - "name": "avatar", - "description": "avatar of SCMId", + "name": "ownerType", + "description": "", + "args": [], + "type": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -17539,12 +17905,24 @@ "deprecationReason": null }, { - "name": "credential", + "name": "description", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "OAuthToken", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -17563,60 +17941,39 @@ "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": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -17624,23 +17981,29 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } + "kind": "OBJECT", + "name": "GitHubProvider", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "SCMId person Person", + "name": "scmProvider", + "description": "", "args": [ { "name": "id", @@ -17653,7 +18016,7 @@ "defaultValue": null }, { - "name": "forename", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -17663,7 +18026,7 @@ "defaultValue": null }, { - "name": "surname", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -17673,7 +18036,17 @@ "defaultValue": null }, { - "name": "name", + "name": "apiUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -17681,91 +18054,28 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "Person", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ResourceUser", - "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": "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", + "name": "SCMProvider", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", + "name": "repo", "description": "", "args": [ { @@ -17777,440 +18087,59 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "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": null, - "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 - } - ] - }, - { - "kind": "INTERFACE", - "name": "Credential", - "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": "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": [ - { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Password", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "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": "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 - }, - { - "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": "id", + "name": "owner", "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": null, - "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 - } - ] - }, - { - "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", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "forename", + "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", @@ -18220,7 +18149,7 @@ "defaultValue": null }, { - "name": "surname", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -18237,7 +18166,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PersonOrdering", + "name": "_RepoOrdering", "ofType": null } }, @@ -18264,7 +18193,7 @@ "defaultValue": null }, { - "name": "name", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -18279,7 +18208,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Person", + "name": "Repo", "ofType": null } }, @@ -18287,8 +18216,8 @@ "deprecationReason": null }, { - "name": "orgs", - "description": "Team orgs Org", + "name": "repos", + "description": "", "args": [ { "name": "id", @@ -18311,78 +18240,57 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ownerType", + "name": "allowMergeCommit", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providers", - "description": "Team providers GitHubProvider", - "args": [ + }, { - "name": "id", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -18392,41 +18300,45 @@ "defaultValue": null }, { - "name": "providerId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_RepoOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "apiUrl", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitUrl", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "providerType", + "name": "defaultBranch", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -18437,7 +18349,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubProvider", + "name": "Repo", "ofType": null } }, @@ -18445,8 +18357,8 @@ "deprecationReason": null }, { - "name": "scmProviders", - "description": "Team scmProviders SCMProvider", + "name": "chatTeam", + "description": "", "args": [ { "name": "id", @@ -18459,7 +18371,7 @@ "defaultValue": null }, { - "name": "url", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -18469,7 +18381,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -18479,7 +18391,7 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -18489,7 +18401,7 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -18499,72 +18411,44 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "ProviderType", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatTeam", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatTeams", - "description": "Team chatTeams ChatTeam", + "name": "team", + "description": "", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -18580,7 +18464,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -18590,7 +18474,7 @@ "defaultValue": null }, { - "name": "tenantId", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -18600,7 +18484,7 @@ "defaultValue": null }, { - "name": "domain", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -18608,53 +18492,171 @@ "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", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "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": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "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": [], + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "GitHubProvider team Team", + "args": [ { - "name": "messageCount", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "description", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "emailDomain", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -18662,26 +18664,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "configuration", - "description": "", - "args": [ + }, { - "name": "namespace", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -18692,13 +18677,9 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamConfiguration", - "ofType": null - } + "kind": "OBJECT", + "name": "Team", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -18711,8 +18692,8 @@ }, { "kind": "ENUM", - "name": "_PersonOrdering", - "description": "Ordering Enum for Person", + "name": "_RepoOrdering", + "description": "Ordering Enum for Repo", "fields": null, "inputFields": null, "interfaces": null, @@ -18742,38 +18723,98 @@ "deprecationReason": null }, { - "name": "forename_asc", - "description": "Ascending sort for forename", + "name": "owner_asc", + "description": "Ascending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "forename_desc", - "description": "Descending sort for forename", + "name": "owner_desc", + "description": "Descending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "surname_asc", - "description": "Ascending sort for surname", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "surname_desc", - "description": "Descending sort for surname", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "allowRebaseMerge_asc", + "description": "Ascending sort for allowRebaseMerge", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "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 } @@ -18782,12 +18823,12 @@ }, { "kind": "OBJECT", - "name": "Person", - "description": "Person-Node", + "name": "Repo", + "description": "Repo-Node", "fields": [ { "name": "_id", - "description": "internal node id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -18797,9 +18838,21 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "url", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", - "description": "id of Person", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -18810,8 +18863,8 @@ "deprecationReason": null }, { - "name": "forename", - "description": "forename of Person", + "name": "owner", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -18822,8 +18875,8 @@ "deprecationReason": null }, { - "name": "surname", - "description": "surname of Person", + "name": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -18834,8 +18887,44 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of Person", + "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", @@ -18846,42 +18935,39 @@ "deprecationReason": null }, { - "name": "resourceUsers", + "name": "gitHubId", "description": "", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scmId", - "description": "Person scmId SCMId", + "name": "defaultBranch", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labels", + "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -18897,7 +18983,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "default", "description": "", "type": { "kind": "SCALAR", @@ -18905,32 +18991,43 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "Person gitHubId GitHubId", - "args": [ + }, { - "name": "login", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_LabelOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "color", "description": "", "type": { "kind": "SCALAR", @@ -18941,16 +19038,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Label", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatId", - "description": "Person chatId ChatId", + "name": "channels", + "description": "", "args": [ { "name": "id", @@ -18963,7 +19064,7 @@ "defaultValue": null }, { - "name": "screenName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -18973,7 +19074,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -18983,7 +19084,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -18993,7 +19094,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -19003,47 +19104,98 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isAdmin", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatChannelOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isBot", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "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", "description": "", "type": { "kind": "SCALAR", @@ -19051,20 +19203,144 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "ownerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "ChatId", + "name": "Org", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emails", - "description": "Person emails Email", + "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": "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": "", @@ -19073,7 +19349,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_IssueOrdering", "ofType": null } }, @@ -19100,7 +19376,7 @@ "defaultValue": null }, { - "name": "address", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -19115,7 +19391,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "Issue", "ofType": null } }, @@ -19123,15 +19399,25 @@ "deprecationReason": null }, { - "name": "team", - "description": "Person team Team", + "name": "issues", + "description": "", "args": [ { "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 @@ -19147,7 +19433,21 @@ "defaultValue": null }, { - "name": "description", + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -19157,7 +19457,37 @@ "defaultValue": null }, { - "name": "iconUrl", + "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", @@ -19175,142 +19505,17 @@ "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": "GitHubId", - "description": "GitHubId-Node", - "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": "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": "login", - "description": "login of GitHubId", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of GitHubId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "", - "args": [ + }, { - "name": "id", + "name": "updatedAt", "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": "GitHubId emails Email", - "args": [ + }, { "name": "orderBy", "description": "", @@ -19319,7 +19524,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_IssueOrdering", "ofType": null } }, @@ -19346,7 +19551,7 @@ "defaultValue": null }, { - "name": "address", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -19361,7 +19566,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "Issue", "ofType": null } }, @@ -19369,8 +19574,8 @@ "deprecationReason": null }, { - "name": "person", - "description": "GitHubId person Person", + "name": "pullRequest", + "description": "", "args": [ { "name": "id", @@ -19383,17 +19588,17 @@ "defaultValue": null }, { - "name": "forename", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "surname", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -19411,280 +19616,182 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Person", - "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", - "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": "owner", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scopes", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + { + "name": "names", + "description": "", + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", "name": "String", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "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 } - }, - "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": "_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": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "", - "args": [], - "type": { - "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": "private", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PullRequest", "ofType": null } }, @@ -19692,48 +19799,32 @@ "deprecationReason": null }, { - "name": "providerType", - "description": "", - "args": [], - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetConfiguration", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "SCMProviderSpec", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", + "name": "pullRequests", "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", @@ -19752,7 +19843,7 @@ "defaultValue": null }, { - "name": "description", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -19762,7 +19853,57 @@ "defaultValue": null }, { - "name": "iconUrl", + "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", @@ -19780,26 +19921,29 @@ "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", + "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", @@ -19816,7 +19960,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -19843,11 +19987,11 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "mergeStatus", "description": "", "type": { "kind": "ENUM", - "name": "OwnerType", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -19858,7 +20002,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Org", + "name": "PullRequest", "ofType": null } }, @@ -19866,39 +20010,49 @@ "deprecationReason": null }, { - "name": "authProviderId", - "description": "", - "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": "webhooks", + "name": "pushes", "description": "", "args": [ { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "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 @@ -19909,140 +20063,108 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Webhook", + "name": "Push", "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": "github_com", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ghe", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bitbucket", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitlab", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMProviderSpec", - "description": "", - "fields": [ - { - "name": "orgSpecs", - "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", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_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": "OBJECT", - "name": "SCMProviderRepoSpec", + "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 } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMProviderRepoSpec", - "description": "", - "fields": [ - { - "name": "ownerSpec", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Branch", "ofType": null } }, @@ -20050,15 +20172,60 @@ "deprecationReason": null }, { - "name": "nameSpec", - "description": "", - "args": [], + "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 + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChannelLink", "ofType": null } }, @@ -20071,80 +20238,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "ResourceProviderState", - "description": "", - "fields": [ - { - "name": "error", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "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": "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": "ENUM", - "name": "_OrgOrdering", - "description": "Ordering Enum for Org", + "name": "_LabelOrdering", + "description": "Ordering Enum for Label", "fields": null, "inputFields": null, "interfaces": null, @@ -20174,49 +20271,38 @@ "deprecationReason": null }, { - "name": "owner_asc", - "description": "Ascending sort for owner", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_desc", - "description": "Descending sort for owner", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType_asc", - "description": "Ascending sort for ownerType", + "name": "default_asc", + "description": "Ascending sort for default", "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType_desc", - "description": "Descending sort for ownerType", + "name": "default_desc", + "description": "Descending sort for default", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OwnerType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "user", - "description": "", + "name": "color_asc", + "description": "Ascending sort for color", "isDeprecated": false, "deprecationReason": null }, { - "name": "organization", - "description": "", + "name": "color_desc", + "description": "Descending sort for color", "isDeprecated": false, "deprecationReason": null } @@ -20225,12 +20311,12 @@ }, { "kind": "OBJECT", - "name": "Org", - "description": "", + "name": "Label", + "description": "Label-Node", "fields": [ { "name": "_id", - "description": "", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", @@ -20242,7 +20328,7 @@ }, { "name": "url", - "description": "", + "description": "the url of the Label", "args": [], "type": { "kind": "SCALAR", @@ -20254,7 +20340,7 @@ }, { "name": "id", - "description": "", + "description": "id of Label", "args": [], "type": { "kind": "SCALAR", @@ -20265,32 +20351,8 @@ "deprecationReason": null }, { - "name": "owner", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerType", - "description": "", - "args": [], - "type": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "avatarUrl", - "description": "", + "name": "name", + "description": "name of Label", "args": [], "type": { "kind": "SCALAR", @@ -20301,8 +20363,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "", + "name": "default", + "description": "default of Label", "args": [], "type": { "kind": "SCALAR", @@ -20313,8 +20375,8 @@ "deprecationReason": null }, { - "name": "state", - "description": "", + "name": "color", + "description": "color of Label", "args": [], "type": { "kind": "SCALAR", @@ -20325,8 +20387,8 @@ "deprecationReason": null }, { - "name": "provider", - "description": "", + "name": "repo", + "description": "Label repo Repo", "args": [ { "name": "id", @@ -20339,7 +20401,7 @@ "defaultValue": null }, { - "name": "url", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -20349,7 +20411,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -20359,60 +20421,47 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "gitUrl", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "providerType", + "name": "allowMergeCommit", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProvider", - "description": "", - "args": [ + }, { - "name": "id", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -20422,7 +20471,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -20430,9 +20479,270 @@ "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_ChatChannelOrdering", + "description": "Ordering Enum for ChatChannel", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_asc", + "description": "Ascending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_desc", + "description": "Descending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalizedName_asc", + "description": "Ascending sort for normalizedName", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalizedName_desc", + "description": "Descending sort for normalizedName", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelId_asc", + "description": "Ascending sort for channelId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelId_desc", + "description": "Descending sort for channelId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDefault_asc", + "description": "Ascending sort for isDefault", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDefault_desc", + "description": "Descending sort for isDefault", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botInvitedSelf_asc", + "description": "Ascending sort for botInvitedSelf", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botInvitedSelf_desc", + "description": "Descending sort for botInvitedSelf", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archived_asc", + "description": "Ascending sort for archived", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archived_desc", + "description": "Descending sort for archived", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatChannel", + "description": "ChatChannel-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "id of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "name of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "provider of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "normalizedName", + "description": "normalizedName of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelId", + "description": "channelId of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDefault", + "description": "isDefault of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "botInvitedSelf", + "description": "botInvitedSelf of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "archived", + "description": "archived of ChatChannel", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "ChatChannel createdBy ChatId", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "apiUrl", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -20442,7 +20752,7 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -20452,11 +20762,71 @@ "defaultValue": null }, { - "name": "providerType", + "name": "provider", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "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 @@ -20464,15 +20834,15 @@ ], "type": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "", + "name": "repos", + "description": "ChatChannel repos Repo", "args": [ { "name": "id", @@ -20612,8 +20982,69 @@ "deprecationReason": null }, { - "name": "repos", - "description": "", + "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": "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 + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChannelLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "members", + "description": "ChatChannel members ChatId", "args": [ { "name": "id", @@ -20626,7 +21057,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -20636,7 +21067,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -20646,37 +21077,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", @@ -20686,7 +21117,17 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isAdmin", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -20703,7 +21144,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_ChatIdOrdering", "ofType": null } }, @@ -20730,7 +21171,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -20745,7 +21186,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "ChatId", "ofType": null } }, @@ -20753,8 +21194,8 @@ "deprecationReason": null }, { - "name": "chatTeam", - "description": "", + "name": "team", + "description": "ChatChannel team ChatTeam", "args": [ { "name": "id", @@ -20834,69 +21275,6 @@ }, "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": "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 } ], "inputFields": null, @@ -20906,8 +21284,8 @@ }, { "kind": "OBJECT", - "name": "GitHubProvider", - "description": "GitHubProvider-Node", + "name": "ChatId", + "description": "ChatId-Node", "fields": [ { "name": "_id", @@ -20923,7 +21301,7 @@ }, { "name": "id", - "description": "id of GitHubProvider", + "description": "id of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -20934,8 +21312,8 @@ "deprecationReason": null }, { - "name": "url", - "description": "url of GitHubProvider", + "name": "screenName", + "description": "screenName of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -20946,319 +21324,8 @@ "deprecationReason": null }, { - "name": "providerId", - "description": "providerId of GitHubProvider", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "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": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "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": [], - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "GitHubProvider 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 - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_RepoOrdering", - "description": "Ordering Enum for Repo", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_asc", - "description": "Ascending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner_desc", - "description": "Descending sort for owner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge_asc", - "description": "Ascending sort for allowRebaseMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowRebaseMerge_desc", - "description": "Descending sort for allowRebaseMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge_asc", - "description": "Ascending sort for allowSquashMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowSquashMerge_desc", - "description": "Descending sort for allowSquashMerge", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit_asc", - "description": "Ascending sort for allowMergeCommit", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allowMergeCommit_desc", - "description": "Descending sort for allowMergeCommit", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId_asc", - "description": "Ascending sort for repoId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repoId_desc", - "description": "Descending sort for repoId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultBranch_asc", - "description": "Ascending sort for defaultBranch", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultBranch_desc", - "description": "Descending sort for defaultBranch", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "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": "name", - "description": "name of ChatTeam", + "name": "userId", + "description": "userId of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21270,7 +21337,7 @@ }, { "name": "provider", - "description": "provider of ChatTeam", + "description": "provider of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21281,8 +21348,8 @@ "deprecationReason": null }, { - "name": "tenantId", - "description": "This ChatTeams tenantId if available for this provider", + "name": "isAtomistBot", + "description": "isAtomistBot of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21293,8 +21360,8 @@ "deprecationReason": null }, { - "name": "serviceUrl", - "description": "This is the url for accessing the API on this ChatTeam", + "name": "isOwner", + "description": "isOwner of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21305,8 +21372,8 @@ "deprecationReason": null }, { - "name": "domain", - "description": "domain of ChatTeam", + "name": "isPrimaryOwner", + "description": "isPrimaryOwner of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21317,20 +21384,20 @@ "deprecationReason": null }, { - "name": "messageCount", - "description": "messageCount of ChatTeam", + "name": "isAdmin", + "description": "isAdmin of ChatId", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", + "name": "isBot", + "description": "isBot of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -21341,113 +21408,20 @@ "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.", + "name": "timezoneLabel", + "description": "timezoneLabel of ChatId", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, - { - "name": "orgs", - "description": "ChatTeam 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": 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": "channels", - "description": "ChatTeam channels ChatChannel", + "description": "ChatId channels ChatChannel", "args": [ { "name": "id", @@ -21577,8 +21551,35 @@ "deprecationReason": null }, { - "name": "members", - "description": "ChatTeam members ChatId", + "name": "emails", + "description": "ChatId emails Email", + "args": [ + { + "name": "address", + "description": "", + "type": { + "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": "chatTeam", + "description": "ChatId chatTeam ChatTeam", "args": [ { "name": "id", @@ -21591,7 +21592,7 @@ "defaultValue": null }, { - "name": "screenName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21601,7 +21602,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -21611,7 +21612,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -21621,7 +21622,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -21631,17 +21632,17 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", @@ -21649,19 +21650,32 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatTeam", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelsCreated", + "description": "ChatId channelsCreated ChatChannel", + "args": [ { - "name": "isAdmin", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isBot", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21671,45 +21685,61 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "provider", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "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 @@ -21720,7 +21750,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatId", + "name": "ChatChannel", "ofType": null } }, @@ -21728,31 +21758,21 @@ "deprecationReason": null }, { - "name": "team", - "description": "ChatTeam team Team", + "name": "person", + "description": "ChatId person Person", "args": [ { "name": "id", "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": "forename", "description": "", "type": { "kind": "SCALAR", @@ -21762,7 +21782,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -21772,7 +21792,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21784,7 +21804,7 @@ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "Person", "ofType": null }, "isDeprecated": false, @@ -21792,14 +21812,14 @@ }, { "name": "preferences", - "description": "Return a chat team's preferences", + "description": "Return a user's preferences", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "TeamPreference", + "name": "UserPreference", "ofType": null } }, @@ -21813,195 +21833,271 @@ "possibleTypes": null }, { - "kind": "ENUM", - "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, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "screenName_asc", - "description": "Ascending sort for screenName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "screenName_desc", - "description": "Descending sort for screenName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId_asc", - "description": "Ascending sort for userId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId_desc", - "description": "Descending sort for userId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAtomistBot_asc", - "description": "Ascending sort for isAtomistBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAtomistBot_desc", - "description": "Descending sort for isAtomistBot", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOwner_asc", - "description": "Ascending sort for isOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOwner_desc", - "description": "Descending sort for isOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrimaryOwner_asc", - "description": "Ascending sort for isPrimaryOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPrimaryOwner_desc", - "description": "Descending sort for isPrimaryOwner", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAdmin_asc", - "description": "Ascending sort for isAdmin", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "Email", + "description": "Email-Node", + "fields": [ { - "name": "isAdmin_desc", - "description": "Descending sort for isAdmin", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_asc", - "description": "Ascending sort for isBot", + "name": "address", + "description": "address of Email", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_desc", - "description": "Descending sort for isBot", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel_asc", - "description": "Ascending sort for timezoneLabel", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "GitHubId", + "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", - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, @@ -22015,15 +22111,15 @@ }, { "kind": "OBJECT", - "name": "Webhook", - "description": "Webhook-Node", + "name": "GitHubId", + "description": "GitHubId-Node", "fields": [ { - "name": "name", - "description": "just a name", + "name": "_typenames", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -22036,7 +22132,7 @@ }, { "name": "id", - "description": "id of Webhook", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -22051,31 +22147,27 @@ "deprecationReason": null }, { - "name": "url", - "description": "url of Webhook", + "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": "authType", - "description": "type of validation", + "name": "login", + "description": "login of GitHubId", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -22083,97 +22175,111 @@ "deprecationReason": null }, { - "name": "provider", - "description": "", - "args": [], + "name": "name", + "description": "name of GitHubId", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "tags", + "name": "credential", "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistKeyValuePair", - "ofType": null - } + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "provider", "description": "", - "args": [], + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookState", + "kind": "OBJECT", + "name": "SCMProvider", "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": [], + "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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Email", "ofType": null } }, @@ -22181,48 +22287,68 @@ "deprecationReason": null }, { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WebhookState", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "enabled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": [ { - "name": "disabled", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { @@ -22261,306 +22387,95 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "description": "Ordering Enum for SCMProvider", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_asc", - "description": "Ascending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_desc", - "description": "Descending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_asc", - "description": "Ascending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType_desc", - "description": "Descending sort for providerType", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChatTeamOrdering", - "description": "Ordering Enum for ChatTeam", + "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": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_asc", - "description": "Ascending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_asc", - "description": "Ascending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_desc", - "description": "Descending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount_asc", - "description": "Ascending sort for messageCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount_desc", - "description": "Descending sort for messageCount", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain_asc", - "description": "Ascending sort for emailDomain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain_desc", - "description": "Descending sort for emailDomain", - "isDeprecated": false, - "deprecationReason": null - } - ], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "TeamConfiguration", - "description": "", + "name": "ChatTeam", + "description": "ChatTeam-Node", "fields": [ { - "name": "namespace", - "description": "", + "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": "name", - "description": "", + "name": "id", + "description": "id of ChatTeam", "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": "value", - "description": "", + "name": "name", + "description": "name of ChatTeam", "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": "ttlSecs", - "description": "", + "name": "provider", + "description": "provider of ChatTeam", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "", + "name": "tenantId", + "description": "This ChatTeams tenantId if available for this provider", "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": "team", - "description": "", + "name": "serviceUrl", + "description": "This is the url for accessing the API on this ChatTeam", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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": "name", - "description": "The name of the preference", + "name": "domain", + "description": "domain of ChatTeam", "args": [], "type": { "kind": "SCALAR", @@ -22571,66 +22486,44 @@ "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", + "name": "messageCount", + "description": "messageCount of ChatTeam", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "description": "Ordering Enum for ChannelLink", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "emailDomain", + "description": "emailDomain of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "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": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelLink", - "description": "ChannelLink-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "initialChatChannelCount", + "description": "The number of ChatChannels to be loaded during initialization.", "args": [], "type": { "kind": "SCALAR", @@ -22641,20 +22534,89 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of ChannelLink", - "args": [], + "name": "orgs", + "description": "ChatTeam 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": 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": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "ChannelLink channel ChatChannel", + "name": "channels", + "description": "ChatTeam channels ChatChannel", "args": [ { "name": "id", @@ -22726,6 +22688,40 @@ }, "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": "", @@ -22738,16 +22734,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "ChannelLink repo Repo", + "name": "members", + "description": "ChatTeam members ChatId", "args": [ { "name": "id", @@ -22760,7 +22760,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -22770,7 +22770,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -22780,37 +22780,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", @@ -22820,7 +22820,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -22830,7 +22830,118 @@ "defaultValue": null }, { - "name": "defaultBranch", + "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 + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "ChatTeam team Team", + "args": [ + { + "name": "id", + "description": "", + "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", @@ -22842,11 +22953,27 @@ ], "type": { "kind": "OBJECT", - "name": "Repo", + "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": "TeamPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -22856,26 +22983,20 @@ }, { "kind": "ENUM", - "name": "IssueState", + "name": "ChatTeamState", "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "open", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closed", + "name": "initializing", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "deleted", + "name": "initialized", "description": "", "isDeprecated": false, "deprecationReason": null @@ -22885,8 +23006,8 @@ }, { "kind": "ENUM", - "name": "_IssueOrdering", - "description": "Ordering Enum for Issue", + "name": "_ChatIdOrdering", + "description": "Ordering Enum for ChatId", "fields": null, "inputFields": null, "interfaces": null, @@ -22916,122 +23037,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": "name_asc", - "description": "Ascending sort for name", + "name": "screenName_asc", + "description": "Ascending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "screenName_desc", + "description": "Descending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_asc", - "description": "Ascending sort for title", + "name": "userId_asc", + "description": "Ascending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_desc", - "description": "Descending sort for title", + "name": "userId_desc", + "description": "Descending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "body_asc", - "description": "Ascending sort for body", + "name": "provider_asc", + "description": "Ascending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "body_desc", - "description": "Descending sort for body", + "name": "provider_desc", + "description": "Descending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "isAtomistBot_asc", + "description": "Ascending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "isAtomistBot_desc", + "description": "Descending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "isOwner_asc", + "description": "Ascending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "isOwner_desc", + "description": "Descending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "action_asc", - "description": "Ascending sort for action", + "name": "isPrimaryOwner_asc", + "description": "Ascending sort for isPrimaryOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "action_desc", - "description": "Descending sort for action", + "name": "isPrimaryOwner_desc", + "description": "Descending sort for isPrimaryOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "isAdmin_asc", + "description": "Ascending sort for isAdmin", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", + "name": "isAdmin_desc", + "description": "Descending sort for isAdmin", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", + "name": "isBot_asc", + "description": "Ascending sort for isBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", + "name": "isBot_desc", + "description": "Descending sort for isBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", + "name": "timezoneLabel_asc", + "description": "Ascending sort for timezoneLabel", "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", + "name": "timezoneLabel_desc", + "description": "Descending sort for timezoneLabel", "isDeprecated": false, "deprecationReason": null } @@ -23040,24 +23149,24 @@ }, { "kind": "OBJECT", - "name": "Issue", - "description": "Issue-Node", + "name": "TeamPreference", + "description": "A team's preferences as key/value pairs", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "name", + "description": "The name of the preference", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the url of the Issue", + "name": "value", + "description": "The value of the preference", "args": [], "type": { "kind": "SCALAR", @@ -23066,47 +23175,567 @@ }, "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": "id", - "description": "id of Issue", + "name": "name", + "description": "The name of the preference", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number", - "description": "number of Issue", + "name": "value", + "description": "The value of the preference", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "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", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "name", - "description": "name of Issue", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": "title of Issue", - "args": [], + "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": "ChannelLink", + "description": "ChannelLink-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 ChannelLink", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channel", + "description": "ChannelLink channel 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 + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "ChannelLink 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 + } + ], + "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": "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": "Issue-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 Issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "id of Issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "number of Issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "name of Issue", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": "title of Issue", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -27773,136 +28402,158 @@ }, "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": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": "Pipeline status", - "args": [], - "type": { - "kind": "ENUM", - "name": "PipelineStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "Pipieline provider", - "args": [], - "type": { - "kind": "ENUM", - "name": "PipelineProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelineId", - "description": "Source id of the pipeline from the provider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "The time this Pipeline was created", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "repo", - "description": "The repo this pipeline ran against", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": "The push that triggered this pipeline if applicable", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "The commit associated with this pipeline if applicable", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "stages", - "description": "The set of stages associated with this pipeline", - "args": [], + "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", + "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": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uri", + "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": "Stage", + "name": "SkillOutput", "ofType": null } }, @@ -27915,80 +28566,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "ENUM", - "name": "PipelineStatus", - "description": "Enum for PipelineStatus", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pending", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failed", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "canceled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skipped", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manual", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PipelineProvider", - "description": "Enum for the PipelineProviders", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "gitlab_ci", - "description": "Gitlab CI Pipeline", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, { "kind": "OBJECT", - "name": "Stage", - "description": "Stage-Node", + "name": "Branch", + "description": "Branch-Node", "fields": [ { "name": "_id", @@ -28003,8 +28584,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "The name of this stage", + "name": "url", + "description": "the URL of the Branch", "args": [], "type": { "kind": "SCALAR", @@ -28015,59 +28596,32 @@ "deprecationReason": null }, { - "name": "pipeline", - "description": "The pipeline that this stage belongs to", + "name": "id", + "description": "id of Branch", "args": [], "type": { - "kind": "OBJECT", - "name": "Pipeline", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "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", + "name": "name", + "description": "name of Branch", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "when", - "description": "When this job gets triggered", + "name": "timestamp", + "description": "timestamp of Branch", "args": [], "type": { "kind": "SCALAR", @@ -28078,8 +28632,8 @@ "deprecationReason": null }, { - "name": "manual", - "description": "Is this job triggered manually?", + "name": "isRemote", + "description": "isRemote of Branch", "args": [], "type": { "kind": "SCALAR", @@ -28090,8 +28644,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "The name of this job", + "name": "remoteRepoHtmlUrl", + "description": "remoteRepoHtmlUrl of Branch", "args": [], "type": { "kind": "SCALAR", @@ -28102,73 +28656,358 @@ "deprecationReason": null }, { - "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": "startedAt", - "description": "When this job started as an ISO8601 string. Blank until started.", - "args": [], + "name": "repo", + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "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": "status", - "description": "The status of this job. Blank until started.", - "args": [], - "type": { - "kind": "ENUM", - "name": "JobStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "runner", - "description": "The runner for this job. Blank until started.", - "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": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stage", - "description": "The stage this job is associated with", - "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": "OBJECT", - "name": "Stage", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -28181,488 +29020,268 @@ }, { "kind": "ENUM", - "name": "JobStatus", - "description": "Enum for JobStatus", + "name": "_PullRequestOrdering", + "description": "Ordering Enum for PullRequest", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "created", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "pending", - "description": "", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "running", - "description": "", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "failed", - "description": "", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "success", - "description": "", + "name": "number_asc", + "description": "Ascending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "canceled", - "description": "", + "name": "number_desc", + "description": "Descending sort for number", "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", - "description": "", + "name": "prId_asc", + "description": "Ascending sort for prId", "isDeprecated": false, "deprecationReason": null }, { - "name": "manual", - "description": "", + "name": "prId_desc", + "description": "Descending sort for prId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SdmGoalState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "success", - "description": null, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "pre_approved", - "description": null, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "requested", - "description": null, + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "waiting_for_pre_approval", - "description": null, + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "approved", - "description": null, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "waiting_for_approval", - "description": null, + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "failure", - "description": null, + "name": "merged_asc", + "description": "Ascending sort for merged", "isDeprecated": false, "deprecationReason": null }, { - "name": "stopped", - "description": null, + "name": "merged_desc", + "description": "Descending sort for merged", "isDeprecated": false, "deprecationReason": null }, { - "name": "planned", - "description": null, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "in_process", - "description": null, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", - "description": null, + "name": "baseBranchName_asc", + "description": "Ascending sort for baseBranchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "canceled", - "description": null, + "name": "baseBranchName_desc", + "description": "Descending sort for baseBranchName", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoal", - "description": null, - "fields": [ + }, { - "name": "approval", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - }, + "name": "branchName_asc", + "description": "Ascending sort for branchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "approvalRequired", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "branchName_desc", + "description": "Descending sort for branchName", "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "title_asc", + "description": "Ascending sort for title", "isDeprecated": false, "deprecationReason": null }, { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "title_desc", + "description": "Descending sort for title", "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "createdAt_asc", + "description": "Ascending sort for createdAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "descriptions", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmGoalDescriptions", - "ofType": null - }, + "name": "createdAt_desc", + "description": "Descending sort for createdAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "updatedAt_asc", + "description": "Ascending sort for updatedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "updatedAt_desc", + "description": "Descending sort for updatedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "externalKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "closedAt_asc", + "description": "Ascending sort for closedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "externalUrl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "closedAt_desc", + "description": "Descending sort for closedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "externalUrls", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmExternalUrl", - "ofType": null - } - }, + "name": "mergedAt_asc", + "description": "Ascending sort for mergedAt", "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", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "goalSet", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "mergedAt_desc", + "description": "Descending sort for mergedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "mergeStatus_asc", + "description": "Ascending sort for mergeStatus", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": 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": "parameters", - "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": "phase", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "unchecked", + "description": "Value for unchecked", "isDeprecated": false, "deprecationReason": null }, { - "name": "preApproval", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - }, + "name": "cannot_be_merged", + "description": "Value for cannot_be_merged", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PullRequest", + "description": "PullRequest-Node", + "fields": [ { - "name": "preApprovalRequired", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preConditions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmCondition", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", - "description": null, + "name": "url", + "description": "the URL of the PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28673,87 +29292,32 @@ "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 - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "retryFeasible", - "description": null, + "name": "id", + "description": "id of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "number", + "description": "number of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "signature", - "description": null, + "name": "prId", + "description": "prId of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28764,32 +29328,20 @@ "deprecationReason": null }, { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ts", - "description": null, + "name": "name", + "description": "name of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "uniqueName", - "description": null, + "name": "body", + "description": "body of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28800,8 +29352,8 @@ "deprecationReason": null }, { - "name": "url", - "description": null, + "name": "state", + "description": "state of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28812,43 +29364,32 @@ "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "merged", + "description": "merged of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmGoal", + "name": "timestamp", + "description": "timestamp of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmProvenance", - "description": null, - "fields": [ + }, { - "name": "channelId", - "description": null, + "name": "baseBranchName", + "description": "baseBranchName of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28859,8 +29400,8 @@ "deprecationReason": null }, { - "name": "correlationId", - "description": null, + "name": "branchName", + "description": "branchName of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28871,8 +29412,8 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "title", + "description": "title of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28883,8 +29424,8 @@ "deprecationReason": null }, { - "name": "registration", - "description": null, + "name": "createdAt", + "description": "createdAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28895,20 +29436,20 @@ "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "updatedAt", + "description": "updatedAt of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "userId", - "description": null, + "name": "closedAt", + "description": "closedAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28919,8 +29460,8 @@ "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "mergedAt", + "description": "mergedAt of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -28929,505 +29470,424 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalDescriptions", - "description": null, - "fields": [ + }, { - "name": "canceled", - "description": null, + "name": "mergeStatus", + "description": "mergeStatus of PullRequest", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "completed", - "description": null, + "name": "action", + "description": "action of PullRequest", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "failed", - "description": null, - "args": [], + "name": "repo", + "description": "PullRequest 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": "inProcess", - "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": "planned", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requested", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "skipped", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stopped", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "waitingForApproval", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "waitingForPreApproval", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": 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": "url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "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 - }, - "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 - } - ], - "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 - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uniqueName", - "description": null, - "args": [], - "type": { - "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": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": null, - "args": [], - "type": { - "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": "branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "goalSet", - "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSetId", - "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": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goals", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmGoalName", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provenance", - "description": null, + "name": "author", + "description": "PullRequest author SCMId", "args": [ { - "name": "registration", - "description": null, + "name": "login", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "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": "SdmProvenance", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "push", - "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": "OBJECT", - "name": "Push", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "assignees", + "description": "PullRequest assignees SCMId", "args": [ + { + "name": "login", + "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": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_SCMIdOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "providerId", - "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 - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmRepository", - "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": "SdmGoalState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], + }, + { + "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": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSetTag", + "name": "SCMId", "ofType": null } }, @@ -29435,366 +29895,481 @@ "deprecationReason": null }, { - "name": "ts", - "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": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": 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": "SdmGoalName", - "description": null, - "fields": [ - { - "name": "name", - "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": "uniqueName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalSetTag", - "description": null, - "fields": [ - { - "name": "name", - "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": "String", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "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 - } - ], - "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, - "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": "format", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmRepository", - "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": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "The ID of this SdmGoalDisplay", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PolicyCompliaceState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "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 - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyCompliance", - "description": null, - "fields": [ - { - "name": "_branch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_repo", - "description": null, - "args": [], - "type": { - "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": "OBJECT", - "name": "PolicyComplianceAspect", - "ofType": 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", + "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 } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "differences", - "description": null, - "args": [], + ], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyComplianceFingerprint", + "name": "Review", "ofType": null } }, @@ -29802,51 +30377,80 @@ "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "push", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "PolicyCompliaceState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targets", - "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": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "PolicyComplianceFingerprint", + "name": "SCMId", "ofType": null } }, @@ -29854,442 +30458,51 @@ "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "OBJECT", - "name": "PolicyComplianceAspect", - "description": null, - "fields": [ - { - "name": "displayType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manageable", - "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": "Boolean", + "kind": "OBJECT", + "name": "SCMId", "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": "PolicyComplianceFingerprint", - "description": null, - "fields": [ - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayValue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "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": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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": "can_be_merged", - "description": "Value for can_be_merged", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unchecked", - "description": "Value for unchecked", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cannot_be_merged", - "description": "Value for cannot_be_merged", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PullRequest", - "description": "PullRequest-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "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", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged", - "description": "merged of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName", - "description": "branchName of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": "title of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "createdAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "updatedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt", - "description": "closedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt", - "description": "mergedAt of PullRequest", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "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": "comments", + "description": "PullRequest comments Comment", "args": [ { "name": "id", @@ -30302,7 +30515,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -30312,7 +30525,7 @@ "defaultValue": null }, { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -30322,37 +30535,27 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "commentId", "description": "", "type": { "kind": "SCALAR", @@ -30372,7 +30575,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "path", "description": "", "type": { "kind": "SCALAR", @@ -30380,22 +30583,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "head", - "description": "PullRequest head Commit", - "args": [ + }, { - "name": "sha", + "name": "position", "description": "", "type": { "kind": "SCALAR", @@ -30405,7 +30595,7 @@ "defaultValue": null }, { - "name": "message", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -30415,83 +30605,78 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommentOrdering", + "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": "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": "commentType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommentCommentType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeCommit", - "description": "PullRequest mergeCommit Commit", + "name": "builds", + "description": "PullRequest builds Build", "args": [ { - "name": "sha", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "buildId", "description": "", "type": { "kind": "SCALAR", @@ -30501,30 +30686,17 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": "PullRequest author SCMId", - "args": [ + }, { - "name": "login", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -30534,17 +30706,17 @@ "defaultValue": null }, { - "name": "name", + "name": "status", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BuildStatus", "ofType": null }, "defaultValue": null }, { - "name": "avatar", + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -30552,22 +30724,9 @@ "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": "compareUrl", "description": "", "type": { "kind": "SCALAR", @@ -30577,17 +30736,17 @@ "defaultValue": null }, { - "name": "name", + "name": "trigger", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BuildTrigger", "ofType": null }, "defaultValue": null }, { - "name": "avatar", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -30595,32 +30754,19 @@ "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": "pullRequestNumber", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "startedAt", "description": "", "type": { "kind": "SCALAR", @@ -30630,41 +30776,27 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "finishedAt", "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 }, { - "name": "avatar", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -30672,26 +30804,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commits", - "description": "PullRequest commits Commit", - "args": [ + }, { - "name": "sha", + "name": "jobName", "description": "", "type": { "kind": "SCALAR", @@ -30701,7 +30816,7 @@ "defaultValue": null }, { - "name": "message", + "name": "jobId", "description": "", "type": { "kind": "SCALAR", @@ -30718,7 +30833,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_BuildOrdering", "ofType": null } }, @@ -30745,7 +30860,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -30760,23 +30875,450 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "Build", "ofType": null } }, "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": "branch", - "description": "PullRequest branch Branch", + "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": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitted", + "description": "", + "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", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login_asc", + "description": "Ascending sort for login", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login_desc", + "description": "Descending sort for login", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "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", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -30792,408 +31334,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", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "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", - "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": "OBJECT", - "name": "Branch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "OBJECT", - "name": "Branch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "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", - "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 - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewers", - "description": "PullRequest reviewers SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", + "name": "orderBy", "description": "", "type": { "kind": "LIST", @@ -31250,11 +31391,11 @@ "deprecationReason": null }, { - "name": "lastAssignedBy", - "description": "PullRequest lastAssignedBy SCMId", + "name": "commit", + "description": "Review commit Commit", "args": [ { - "name": "login", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -31264,7 +31405,7 @@ "defaultValue": null }, { - "name": "name", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -31274,7 +31415,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -31286,7 +31427,7 @@ ], "type": { "kind": "OBJECT", - "name": "SCMId", + "name": "Commit", "ofType": null }, "isDeprecated": false, @@ -31294,7 +31435,7 @@ }, { "name": "comments", - "description": "PullRequest comments Comment", + "description": "Review comments Comment", "args": [ { "name": "id", @@ -31454,8 +31595,8 @@ "deprecationReason": null }, { - "name": "builds", - "description": "PullRequest builds Build", + "name": "pullRequest", + "description": "Review pullRequest PullRequest", "args": [ { "name": "id", @@ -31467,28 +31608,18 @@ }, "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 }, { - "name": "name", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -31498,17 +31629,7 @@ "defaultValue": null }, { - "name": "status", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -31518,7 +31639,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -31528,17 +31649,7 @@ "defaultValue": null }, { - "name": "trigger", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -31548,17 +31659,17 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -31568,7 +31679,7 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -31578,7 +31689,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -31588,7 +31699,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -31598,7 +31709,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -31608,7 +31719,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -31618,58 +31729,40 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "data", + "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": "Build", - "ofType": null - } + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -31682,199 +31775,153 @@ }, { "kind": "ENUM", - "name": "PullRequestAction", - "description": "", + "name": "_CommentOrdering", + "description": "Ordering Enum for Comment", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "assigned", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unassigned", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_requested", - "description": "", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "review_request_removed", - "description": "", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "labeled", - "description": "", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "unlabeled", - "description": "", + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "opened", - "description": "", + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "edited", - "description": "", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "closed", - "description": "", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "reopened", - "description": "", + "name": "createdAt_asc", + "description": "Ascending sort for createdAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "synchronize", - "description": "", + "name": "createdAt_desc", + "description": "Descending sort for createdAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "submitted", - "description": "", + "name": "updatedAt_asc", + "description": "Ascending sort for updatedAt", "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": "updatedAt_desc", + "description": "Descending sort for updatedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "commentId_asc", + "description": "Ascending sort for commentId", "isDeprecated": false, "deprecationReason": null }, { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "commentId_desc", + "description": "Descending sort for commentId", "isDeprecated": false, "deprecationReason": null }, { - "name": "login_desc", - "description": "Descending sort for login", + "name": "gitHubId_asc", + "description": "Ascending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "gitHubId_desc", + "description": "Descending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "path_asc", + "description": "Ascending sort for path", "isDeprecated": false, "deprecationReason": null }, { - "name": "avatar_asc", - "description": "Ascending sort for avatar", + "name": "path_desc", + "description": "Descending sort for path", "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", + "name": "position_asc", + "description": "Ascending sort for position", "isDeprecated": false, "deprecationReason": null }, { - "name": "pending", - "description": "Value for pending", + "name": "position_desc", + "description": "Descending sort for position", "isDeprecated": false, "deprecationReason": null }, { - "name": "approved", - "description": "Value for approved", + "name": "htmlUrl_asc", + "description": "Ascending sort for htmlUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "commented", - "description": "Value for commented", + "name": "htmlUrl_desc", + "description": "Descending sort for htmlUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "unapproved", - "description": "Value for unapproved", + "name": "commentType_asc", + "description": "Ascending sort for commentType", "isDeprecated": false, "deprecationReason": null }, { - "name": "changes_requested", - "description": "Value for changes_requested", + "name": "commentType_desc", + "description": "Descending sort for commentType", "isDeprecated": false, "deprecationReason": null } @@ -31883,105 +31930,27 @@ }, { "kind": "ENUM", - "name": "_ReviewOrdering", - "description": "Ordering Enum for Review", + "name": "CommentCommentType", + "description": "Enum for CommentCommentType", "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", + "name": "review", + "description": "Value for review", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", + "name": "pullRequest", + "description": "Value for pullRequest", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", + "name": "issue", + "description": "Value for issue", "isDeprecated": false, "deprecationReason": null } @@ -31990,8 +31959,8 @@ }, { "kind": "OBJECT", - "name": "Review", - "description": "Review-Node", + "name": "Comment", + "description": "Comment-Node", "fields": [ { "name": "_id", @@ -32007,7 +31976,7 @@ }, { "name": "url", - "description": "the URL of the Review", + "description": "the url of the Comment", "args": [], "type": { "kind": "SCALAR", @@ -32019,7 +31988,7 @@ }, { "name": "id", - "description": "id of Review", + "description": "id of Comment", "args": [], "type": { "kind": "SCALAR", @@ -32030,8 +31999,8 @@ "deprecationReason": null }, { - "name": "gitHubId", - "description": "gitHubId of Review", + "name": "body", + "description": "body of Comment", "args": [], "type": { "kind": "SCALAR", @@ -32042,8 +32011,8 @@ "deprecationReason": null }, { - "name": "reviewId", - "description": "reviewId of Review", + "name": "timestamp", + "description": "timestamp of Comment", "args": [], "type": { "kind": "SCALAR", @@ -32054,8 +32023,8 @@ "deprecationReason": null }, { - "name": "body", - "description": "body of Review", + "name": "createdAt", + "description": "createdAt of Comment", "args": [], "type": { "kind": "SCALAR", @@ -32066,20 +32035,56 @@ "deprecationReason": null }, { - "name": "state", - "description": "state of Review", + "name": "updatedAt", + "description": "updatedAt of Comment", "args": [], "type": { - "kind": "ENUM", - "name": "ReviewState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "submittedAt", - "description": "submittedAt of Review", + "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", @@ -32091,7 +32096,7 @@ }, { "name": "htmlUrl", - "description": "htmlUrl of Review", + "description": "htmlUrl of Comment", "args": [], "type": { "kind": "SCALAR", @@ -32102,92 +32107,43 @@ "deprecationReason": null }, { - "name": "by", - "description": "Review by SCMId", + "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": "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", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "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": "name", "description": "", "type": { "kind": "SCALAR", @@ -32197,7 +32153,7 @@ "defaultValue": null }, { - "name": "message", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -32207,7 +32163,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -32215,32 +32171,19 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comments", - "description": "Review comments Comment", - "args": [ + }, { - "name": "id", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "IssueState", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -32250,7 +32193,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -32280,7 +32223,7 @@ "defaultValue": null }, { - "name": "commentId", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -32288,19 +32231,32 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review", + "description": "Comment review Review", + "args": [ { - "name": "gitHubId", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -32310,7 +32266,7 @@ "defaultValue": null }, { - "name": "position", + "name": "reviewId", "description": "", "type": { "kind": "SCALAR", @@ -32320,7 +32276,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -32330,65 +32286,47 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommentOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ReviewState", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "submittedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "commentType", + "name": "htmlUrl", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Comment", - "ofType": null - } + "kind": "OBJECT", + "name": "Review", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { "name": "pullRequest", - "description": "Review pullRequest PullRequest", + "description": "Comment pullRequest PullRequest", "args": [ { "name": "id", @@ -32558,162 +32496,238 @@ }, "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", + "name": "by", + "description": "Comment by 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 - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Pipeline", + "description": "Pipeline-Node", + "fields": [ { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "status", + "description": "Pipeline status", + "args": [], + "type": { + "kind": "ENUM", + "name": "PipelineStatus", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", + "name": "provider", + "description": "Pipieline provider", + "args": [], + "type": { + "kind": "ENUM", + "name": "PipelineProvider", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", + "name": "pipelineId", + "description": "Source id of the pipeline from the provider", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", + "name": "createdAt", + "description": "The time this Pipeline was created", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commentId_asc", - "description": "Ascending sort for commentId", + "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": "commentId_desc", - "description": "Descending sort for commentId", + "name": "repo", + "description": "The repo this pipeline ran against", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", + "name": "push", + "description": "The push that triggered this pipeline if applicable", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", + "name": "commit", + "description": "The commit associated with this pipeline if applicable", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "path_asc", - "description": "Ascending sort for path", + "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": "path_desc", - "description": "Descending sort for path", + "name": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "position_asc", - "description": "Ascending sort for position", + "name": "pending", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "position_desc", - "description": "Descending sort for position", + "name": "success", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", + "name": "failed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", + "name": "canceled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentType_asc", - "description": "Ascending sort for commentType", + "name": "skipped", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentType_desc", - "description": "Descending sort for commentType", + "name": "manual", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -32722,27 +32736,15 @@ }, { "kind": "ENUM", - "name": "CommentCommentType", - "description": "Enum for CommentCommentType", + "name": "PipelineProvider", + "description": "Enum for the PipelineProviders", "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", + "name": "gitlab_ci", + "description": "Gitlab CI Pipeline", "isDeprecated": false, "deprecationReason": null } @@ -32751,8 +32753,8 @@ }, { "kind": "OBJECT", - "name": "Comment", - "description": "Comment-Node", + "name": "Stage", + "description": "Stage-Node", "fields": [ { "name": "_id", @@ -32767,8 +32769,8 @@ "deprecationReason": null }, { - "name": "url", - "description": "the url of the Comment", + "name": "name", + "description": "The name of this stage", "args": [], "type": { "kind": "SCALAR", @@ -32779,44 +32781,59 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Comment", + "name": "pipeline", + "description": "The pipeline that this stage belongs to", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Pipeline", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body", - "description": "body of Comment", + "name": "jobs", + "description": "The list of jobs associated with this stage", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "timestamp", - "description": "timestamp of Comment", + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Comment", + "name": "when", + "description": "When this job gets triggered", "args": [], "type": { "kind": "SCALAR", @@ -32827,20 +32844,20 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of Comment", + "name": "manual", + "description": "Is this job triggered manually?", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commentId", - "description": "commentId of Comment", + "name": "name", + "description": "The name of this job", "args": [], "type": { "kind": "SCALAR", @@ -32851,20 +32868,20 @@ "deprecationReason": null }, { - "name": "gitHubId", - "description": "gitHubId of Comment", + "name": "jobId", + "description": "The source id of this job. The ID assigned to it by its provider", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "path", - "description": "path of Comment", + "name": "startedAt", + "description": "When this job started as an ISO8601 string. Blank until started.", "args": [], "type": { "kind": "SCALAR", @@ -32875,8 +32892,8 @@ "deprecationReason": null }, { - "name": "position", - "description": "position of Comment", + "name": "finishedAt", + "description": "When this job finished as an ISO8601 string. Blank until finished.", "args": [], "type": { "kind": "SCALAR", @@ -32887,477 +32904,245 @@ "deprecationReason": null }, { - "name": "htmlUrl", - "description": "htmlUrl of Comment", + "name": "status", + "description": "The status of this job. Blank until started.", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "JobStatus", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commentType", - "description": "commentType of Comment", + "name": "runner", + "description": "The runner for this job. Blank until started.", "args": [], "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "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": "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": "stage", + "description": "The stage this job is associated with", + "args": [], "type": { "kind": "OBJECT", - "name": "Issue", + "name": "Stage", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "JobStatus", + "description": "Enum for JobStatus", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "review", - "description": "Comment review 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": "htmlUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": 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", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skipped", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "pre_approved", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requested", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "waiting_for_pre_approval", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "approved", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "waiting_for_approval", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "failure", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "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 + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoal", + "description": null, + "fields": [ + { + "name": "approval", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "Review", + "name": "SdmProvenance", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequest", - "description": "Comment 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 - } - ], + "name": "approvalRequired", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "PullRequest", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "by", - "description": "Comment by 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": "branch", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "SCMId", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tag", - "description": "Tag-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "data", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Tag", + "name": "description", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33368,20 +33153,20 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Tag", + "name": "descriptions", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "SdmGoalDescriptions", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Tag", + "name": "environment", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33392,8 +33177,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "description of Tag", + "name": "error", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33404,8 +33189,8 @@ "deprecationReason": null }, { - "name": "ref", - "description": "ref of Tag", + "name": "externalKey", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33416,8 +33201,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Tag", + "name": "externalUrl", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33428,158 +33213,193 @@ "deprecationReason": null }, { - "name": "release", - "description": "Tag release Release", + "name": "externalUrls", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmExternalUrl", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fulfillment", + "description": null, "args": [ { - "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": "name", - "description": "", + "name": "method", + "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": "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": "OBJECT", - "name": "Release", + "name": "SdmGoalFulfillment", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "Tag 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": "goalSet", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "goalSetId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phase", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preApproval", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "Commit", + "name": "SdmProvenance", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containers", - "description": "Tag containers DockerImage", + "name": "preApprovalRequired", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preConditions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmCondition", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provenance", + "description": 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": "orderBy", - "description": "", + "name": "registration", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", + "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": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -33587,7 +33407,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerImage", + "name": "SdmProvenance", "ofType": null } }, @@ -33595,252 +33415,99 @@ "deprecationReason": null }, { - "name": "builds", - "description": "Tag builds Build", + "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": "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": "", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_BuildOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "data", - "description": "", + "name": "providerId", + "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": "Build", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmRepository", + "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", + "name": "retryFeasible", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Release", + "name": "sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33851,20 +33518,44 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Release", + "name": "signature", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Release", + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uniqueName", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33875,8 +33566,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Release", + "name": "url", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -33887,63 +33578,24 @@ "deprecationReason": null }, { - "name": "tag", - "description": "Release 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 - } - ], + "name": "version", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Tag", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this SdmGoal", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -33956,84 +33608,120 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "description": "Ordering Enum for DockerImage", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "SdmProvenance", + "description": null, + "fields": [ { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "channelId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image_asc", - "description": "Ascending sort for image", + "name": "correlationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image_desc", - "description": "Descending sort for image", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_asc", - "description": "Ascending sort for imageName", + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_desc", - "description": "Descending sort for imageName", + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "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": "DockerImage", - "description": "DockerImage-Node", + "name": "SdmGoalDescriptions", + "description": null, "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "canceled", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": "image of DockerImage", + "name": "completed", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34044,8 +33732,8 @@ "deprecationReason": null }, { - "name": "imageName", - "description": "imageName of DockerImage", + "name": "failed", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34056,8 +33744,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of DockerImage", + "name": "inProcess", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34068,657 +33756,130 @@ "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", - "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": "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 - } - ], + "name": "planned", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Pod", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commits", - "description": "DockerImage 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 - } - ], + "name": "requested", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containers", - "description": "DockerImage 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 - } - ], + "name": "skipped", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_K8PodOrdering", - "description": "Ordering Enum for K8Pod", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_asc", - "description": "Ascending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_desc", - "description": "Descending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_asc", - "description": "Ascending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_desc", - "description": "Descending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_asc", - "description": "Ascending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_desc", - "description": "Descending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_asc", - "description": "Ascending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_desc", - "description": "Descending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_asc", - "description": "Ascending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_desc", - "description": "Descending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON_asc", - "description": "Ascending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON_desc", - "description": "Descending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_asc", - "description": "Ascending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_desc", - "description": "Descending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "metadataJSON_asc", - "description": "Ascending sort for metadataJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON_desc", - "description": "Descending sort for metadataJSON", + "name": "stopped", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containersCrashLoopBackOff_asc", - "description": "Ascending sort for containersCrashLoopBackOff", + "name": "waitingForApproval", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containersCrashLoopBackOff_desc", - "description": "Descending sort for containersCrashLoopBackOff", + "name": "waitingForPreApproval", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmExternalUrl", + "description": null, + "fields": [ { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "K8Pod", - "description": "K8Pod-Node", + "name": "SdmGoalFulfillment", + "description": null, "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "method", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -34726,7 +33887,7 @@ }, { "name": "name", - "description": "name of K8Pod", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34737,8 +33898,8 @@ "deprecationReason": null }, { - "name": "phase", - "description": "phase of K8Pod", + "name": "registration", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34747,10 +33908,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmCondition", + "description": null, + "fields": [ { "name": "environment", - "description": "environment of K8Pod", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34761,8 +33933,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of K8Pod", + "name": "name", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34773,8 +33945,8 @@ "deprecationReason": null }, { - "name": "baseName", - "description": "baseName of K8Pod", + "name": "uniqueName", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34783,10 +33955,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmRepository", + "description": null, + "fields": [ { - "name": "namespace", - "description": "namespace of K8Pod", + "name": "name", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34797,8 +33980,8 @@ "deprecationReason": null }, { - "name": "statusJSON", - "description": "statusJSON of K8Pod", + "name": "owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34809,8 +33992,8 @@ "deprecationReason": null }, { - "name": "host", - "description": "host of K8Pod", + "name": "providerId", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34819,10 +34002,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoalSet", + "description": null, + "fields": [ { - "name": "state", - "description": "state of K8Pod", + "name": "branch", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34833,8 +34027,8 @@ "deprecationReason": null }, { - "name": "specsJSON", - "description": "specsJSON of K8Pod", + "name": "goalSet", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34845,8 +34039,8 @@ "deprecationReason": null }, { - "name": "envJSON", - "description": "envJSON of K8Pod", + "name": "goalSetId", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -34857,460 +34051,295 @@ "deprecationReason": null }, { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", + "name": "goals", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalName", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "args": [], + "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": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "SdmProvenance", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", + "name": "push", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Push", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "images", - "description": "K8Pod images DockerImage", + "name": "repo", + "description": null, "args": [ { - "name": "image", - "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": "imageName", - "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": "orderBy", - "description": "", + "name": "providerId", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", + "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": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmRepository", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "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 - } - ], + "name": "sha", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "K8Container", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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", - "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", + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stateReason_desc", - "description": "Descending sort for stateReason", + "name": "tags", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalSetTag", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ready_asc", - "description": "Ascending sort for ready", + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ready_desc", - "description": "Descending sort for ready", + "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": "SdmGoalName", + "description": null, + "fields": [ { - "name": "restartCount_asc", - "description": "Ascending sort for restartCount", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "restartCount_desc", - "description": "Descending sort for restartCount", + "name": "uniqueName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmGoalSetTag", + "description": null, + "fields": [ { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "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": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", + "name": "compact", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", + "name": "full", + "description": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "containerID_asc", - "description": "Ascending sort for containerID", + "name": "show_current", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerID_desc", - "description": "Descending sort for containerID", + "name": "show_all", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -35319,60 +34348,60 @@ }, { "kind": "OBJECT", - "name": "K8Container", - "description": "K8Container-Node", + "name": "SdmGoalDisplay", + "description": null, "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "branch", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of K8Container", + "name": "format", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName", - "description": "imageName of K8Container", + "name": "push", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Push", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of K8Container", + "name": "repo", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SdmRepository", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": "environment of K8Container", + "name": "sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35383,68 +34412,108 @@ "deprecationReason": null }, { - "name": "containerJSON", - "description": "containerJSON of K8Container", + "name": "state", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalDisplayState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of K8Container", + "name": "ts", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stateReason", - "description": "stateReason of K8Container", + "name": "id", + "description": "The ID of this SdmGoalDisplay", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "ready", - "description": "ready of K8Container", + "name": "in_review", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyCompliance", + "description": null, + "fields": [ + { + "name": "_branch", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "restartCount", - "description": "restartCount of K8Container", + "name": "_owner", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON", - "description": "statusJSON of K8Container", + "name": "_repo", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35455,20 +34524,52 @@ "deprecationReason": null }, { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", + "name": "_sha", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerID", - "description": "containerID of K8Container", + "name": "aspects", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceAspect", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "differences", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35479,196 +34580,64 @@ "deprecationReason": null }, { - "name": "image", - "description": "K8Container 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": "push", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "DockerImage", + "name": "Push", "ofType": null }, "isDeprecated": false, "deprecationReason": 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 + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targets", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ts", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "K8Pod", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this PolicyCompliance", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -35682,28 +34651,99 @@ }, { "kind": "OBJECT", - "name": "Workflow", - "description": "Workflow-Node", + "name": "PolicyComplianceAspect", + "description": null, "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "displayType", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Workflow", + "name": "manageable", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", + "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": "PolicyComplianceFingerprint", + "description": null, + "fields": [ + { + "name": "data", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -35711,7 +34751,7 @@ }, { "name": "name", - "description": "name of Workflow", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35722,8 +34762,8 @@ "deprecationReason": null }, { - "name": "workflowId", - "description": "workflowId of Workflow", + "name": "sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35734,8 +34774,31 @@ "deprecationReason": null }, { - "name": "provider", - "description": "provider of Workflow", + "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": "SkillOutput", + "description": null, + "fields": [ + { + "name": "_branch", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35746,8 +34809,8 @@ "deprecationReason": null }, { - "name": "config", - "description": "config of Workflow", + "name": "_owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -35758,449 +34821,182 @@ "deprecationReason": 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": "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 - } - ], + "name": "_repo", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_TagOrdering", - "description": "Ordering Enum for Tag", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "_sha", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "classifier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "correlationId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "orgParentId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_asc", - "description": "Ascending sort for description", + "name": "push", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description_desc", - "description": "Descending sort for description", + "name": "repoParentId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ref_asc", - "description": "Ascending sort for ref", + "name": "skill", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SkillOutputSkill", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ref_desc", - "description": "Descending sort for ref", + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "uri", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "id", + "description": "The ID of this SkillOutput", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "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 - } - ], + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "_StatusOrdering", - "description": "Ordering Enum for Status", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_asc", - "description": "Ascending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_desc", - "description": "Descending sort for description", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUrl_asc", - "description": "Ascending sort for targetUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUrl_desc", - "description": "Descending sort for targetUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context_asc", - "description": "Ascending sort for context", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "context_desc", - "description": "Descending sort for context", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "SkillOutputSkill", + "description": null, + "fields": [ { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "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": "Status", - "description": "Status-Node", + "name": "Tag", + "description": "Tag-Node", "fields": [ { "name": "_id", @@ -36215,32 +35011,32 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Status", + "name": "url", + "description": "the URL of the Tag", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of Status", + "name": "id", + "description": "id of Tag", "args": [], "type": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": "description of Status", + "name": "name", + "description": "name of Tag", "args": [], "type": { "kind": "SCALAR", @@ -36251,8 +35047,8 @@ "deprecationReason": null }, { - "name": "targetUrl", - "description": "targetUrl of Status", + "name": "description", + "description": "description of Tag", "args": [], "type": { "kind": "SCALAR", @@ -36263,8 +35059,8 @@ "deprecationReason": null }, { - "name": "context", - "description": "context of Status", + "name": "ref", + "description": "ref of Tag", "args": [], "type": { "kind": "SCALAR", @@ -36276,7 +35072,7 @@ }, { "name": "timestamp", - "description": "timestamp of Status", + "description": "timestamp of Tag", "args": [], "type": { "kind": "SCALAR", @@ -36286,9 +35082,52 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "release", + "description": "Tag release Release", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "Release", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "commit", - "description": "Status commit Commit", + "description": "Tag commit Commit", "args": [ { "name": "sha", @@ -36328,76 +35167,453 @@ }, "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", + "name": "containers", + "description": "Tag containers 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": "ENUM", + "name": "_DockerImageOrdering", + "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": "DockerImage", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "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", + "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": "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_asc", - "description": "Ascending sort for id", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "url", + "description": "the URL of the Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "id", + "description": "id of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "name", + "description": "name of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_asc", - "description": "Ascending sort for branch", + "name": "timestamp", + "description": "timestamp of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_desc", - "description": "Descending sort for branch", + "name": "tag", + "description": "Release 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 } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_PullRequestOrdering", - "description": "Ordering Enum for PullRequest", + "name": "_DockerImageOrdering", + "description": "Ordering Enum for DockerImage", "fields": null, "inputFields": null, "interfaces": null, @@ -36415,387 +35631,291 @@ "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", + "name": "image_asc", + "description": "Ascending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "number_asc", - "description": "Ascending sort for number", + "name": "image_desc", + "description": "Descending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "number_desc", - "description": "Descending sort for number", + "name": "imageName_asc", + "description": "Ascending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "prId_asc", - "description": "Ascending sort for prId", + "name": "imageName_desc", + "description": "Descending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "prId_desc", - "description": "Descending sort for prId", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DockerImage", + "description": "DockerImage-Node", + "fields": [ { - "name": "name_desc", - "description": "Descending sort for name", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body_asc", - "description": "Ascending sort for body", + "name": "image", + "description": "image of DockerImage", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body_desc", - "description": "Descending sort for body", + "name": "imageName", + "description": "imageName of DockerImage", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "timestamp", + "description": "timestamp of DockerImage", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged_asc", - "description": "Ascending sort for merged", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "merged_desc", - "description": "Descending sort for merged", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName_asc", - "description": "Ascending sort for baseBranchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseBranchName_desc", - "description": "Descending sort for baseBranchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName_asc", - "description": "Ascending sort for branchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branchName_desc", - "description": "Descending sort for branchName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_asc", - "description": "Ascending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title_desc", - "description": "Descending sort for title", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_asc", - "description": "Ascending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt_asc", - "description": "Ascending sort for mergedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mergedAt_desc", - "description": "Descending sort for mergedAt", - "isDeprecated": false, - "deprecationReason": null - }, - { - "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": "_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": [], + "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", + "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": "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Pod", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { "name": "commits", - "description": "HerokuApp commits Commit", + "description": "DockerImage commits Commit", "args": [ { "name": "sha", @@ -36873,26 +35993,197 @@ }, "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": "containers", + "description": "DockerImage 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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Container", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_K8PodOrdering", + "description": "Ordering Enum for K8Pod", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null }, { "name": "atmTeamId_desc", @@ -36901,38 +36192,38 @@ "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "phase_asc", + "description": "Ascending sort for phase", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "phase_desc", + "description": "Descending sort for phase", "isDeprecated": false, "deprecationReason": null }, { - "name": "host_asc", - "description": "Ascending sort for host", + "name": "environment_asc", + "description": "Ascending sort for environment", "isDeprecated": false, "deprecationReason": null }, { - "name": "host_desc", - "description": "Descending sort for host", + "name": "environment_desc", + "description": "Descending sort for environment", "isDeprecated": false, "deprecationReason": null }, @@ -36949,26 +36240,122 @@ "deprecationReason": null }, { - "name": "domain_asc", - "description": "Ascending sort for domain", + "name": "baseName_asc", + "description": "Ascending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "domain_desc", - "description": "Descending sort for domain", + "name": "baseName_desc", + "description": "Descending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "data_asc", - "description": "Ascending sort for data", + "name": "namespace_asc", + "description": "Ascending sort for namespace", "isDeprecated": false, "deprecationReason": null }, { - "name": "data_desc", - "description": "Descending sort for data", + "name": "namespace_desc", + "description": "Descending sort for namespace", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusJSON_asc", + "description": "Ascending sort for statusJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statusJSON_desc", + "description": "Descending sort for statusJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host_asc", + "description": "Ascending sort for host", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host_desc", + "description": "Descending sort for host", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state_asc", + "description": "Ascending sort for state", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state_desc", + "description": "Descending sort for state", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "specsJSON_asc", + "description": "Ascending sort for specsJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "specsJSON_desc", + "description": "Descending sort for specsJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "envJSON_asc", + "description": "Ascending sort for envJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "envJSON_desc", + "description": "Descending sort for envJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadataJSON_asc", + "description": "Ascending sort for metadataJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadataJSON_desc", + "description": "Descending sort for metadataJSON", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containersCrashLoopBackOff_asc", + "description": "Ascending sort for containersCrashLoopBackOff", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containersCrashLoopBackOff_desc", + "description": "Descending sort for containersCrashLoopBackOff", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceVersion_asc", + "description": "Ascending sort for resourceVersion", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceVersion_desc", + "description": "Descending sort for resourceVersion", "isDeprecated": false, "deprecationReason": null } @@ -36977,8 +36364,8 @@ }, { "kind": "OBJECT", - "name": "Application", - "description": "Application-Node", + "name": "K8Pod", + "description": "K8Pod-Node", "fields": [ { "name": "_id", @@ -36993,20 +36380,20 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Application", + "name": "name", + "description": "name of K8Pod", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of Application", + "name": "phase", + "description": "phase of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -37017,8 +36404,8 @@ "deprecationReason": null }, { - "name": "host", - "description": "host of Application", + "name": "environment", + "description": "environment of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -37030,7 +36417,7 @@ }, { "name": "timestamp", - "description": "timestamp of Application", + "description": "timestamp of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -37041,8 +36428,8 @@ "deprecationReason": null }, { - "name": "domain", - "description": "domain of Application", + "name": "baseName", + "description": "baseName of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -37053,8 +36440,8 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of Application", + "name": "namespace", + "description": "namespace of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -37065,11 +36452,107 @@ "deprecationReason": null }, { - "name": "commits", - "description": "Application commits Commit", + "name": "statusJSON", + "description": "statusJSON of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host", + "description": "host of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "state of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "specsJSON", + "description": "specsJSON of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "envJSON", + "description": "envJSON of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metadataJSON", + "description": "metadataJSON of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containersCrashLoopBackOff", + "description": "containersCrashLoopBackOff of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceVersion", + "description": "resourceVersion of K8Pod", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "images", + "description": "K8Pod images DockerImage", "args": [ { - "name": "sha", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -37079,7 +36562,7 @@ "defaultValue": null }, { - "name": "message", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -37096,7 +36579,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_DockerImageOrdering", "ofType": null } }, @@ -37138,130 +36621,178 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "DockerImage", "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 - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayName", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayType", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "displayValue", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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": "sha", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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 } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "K8Container", "ofType": null } }, @@ -37270,35 +36801,14 @@ } ], "inputFields": null, - "interfaces": null, + "interfaces": [], "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 - } - ] + "possibleTypes": null }, { "kind": "ENUM", - "name": "_BranchOrdering", - "description": "Ordering Enum for Branch", + "name": "_K8ContainerOrdering", + "description": "Ordering Enum for K8Container", "fields": null, "inputFields": null, "interfaces": null, @@ -37316,26 +36826,26 @@ "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "imageName_asc", + "description": "Ascending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "imageName_desc", + "description": "Descending sort for imageName", "isDeprecated": false, "deprecationReason": null }, @@ -37352,26 +36862,110 @@ "deprecationReason": null }, { - "name": "isRemote_asc", - "description": "Ascending sort for isRemote", + "name": "environment_asc", + "description": "Ascending sort for environment", "isDeprecated": false, "deprecationReason": null }, { - "name": "isRemote_desc", - "description": "Descending sort for isRemote", + "name": "environment_desc", + "description": "Descending sort for environment", "isDeprecated": false, "deprecationReason": null }, { - "name": "remoteRepoHtmlUrl_asc", - "description": "Ascending sort for remoteRepoHtmlUrl", + "name": "containerJSON_asc", + "description": "Ascending sort for containerJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "remoteRepoHtmlUrl_desc", - "description": "Descending sort for remoteRepoHtmlUrl", + "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 } @@ -37380,491 +36974,435 @@ }, { "kind": "OBJECT", - "name": "AtomistSkills", - "description": "", + "name": "K8Container", + "description": "K8Container-Node", "fields": [ { - "name": "disabled", - "description": "", - "args": [ - { - "name": "query", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "internal node id", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistPagedTeamSkills", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enabled", - "description": "", - "args": [ - { - "name": "query", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "name", + "description": "name of K8Container", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistPagedTeamSkills", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shared", - "description": "", - "args": [ - { - "name": "query", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillsSearchInput", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "imageName", + "description": "imageName of K8Container", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistPagedSharedSkills", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "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": "", + "name": "timestamp", + "description": "timestamp of K8Container", + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistPagedTeamSkills", - "description": "", - "fields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "skills", - "description": "", + "name": "environment", + "description": "environment of K8Container", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistTeamSkill", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistPagedSharedSkills", - "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": "AtomistSharedSkill", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistSharedSkill", - "description": "", - "fields": [ - { - "name": "author", - "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 }, { - "name": "categories", - "description": "", + "name": "containerJSON", + "description": "containerJSON of K8Container", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillCategory", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commands", - "description": "", + "name": "state", + "description": "state of K8Container", "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", - "description": "", + "name": "stateReason", + "description": "stateReason of K8Container", "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": "description", - "description": "", + "name": "ready", + "description": "ready of K8Container", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "displayName", - "description": "", + "name": "restartCount", + "description": "restartCount of K8Container", "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": "homepageUrl", - "description": "", + "name": "statusJSON", + "description": "statusJSON of K8Container", "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": "iconUrl", - "description": "", + "name": "resourceVersion", + "description": "resourceVersion of K8Container", "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": "ingesters", - "description": "", + "name": "containerID", + "description": "containerID of K8Container", "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": "license", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "image", + "description": "K8Container 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": "OBJECT", + "name": "DockerImage", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "longDescription", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "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 } + ], + "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": "name", - "description": "", + "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": "owner", - "description": "", + "name": "id", + "description": "id of Workflow", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subscriptions", - "description": "", + "name": "name", + "description": "name of Workflow", "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": "technologies", - "description": "", + "name": "workflowId", + "description": "workflowId of Workflow", "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", - "description": "", + "name": "provider", + "description": "provider of Workflow", "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": "videoUrl", - "description": "", + "name": "config", + "description": "config of Workflow", "args": [], "type": { "kind": "SCALAR", @@ -37873,34 +37411,222 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AtomistSkill", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistRegistration", - "description": "", - "fields": [ + }, { - "name": "name", - "description": "", - "args": [], + "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": "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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Build", "ofType": null } }, @@ -37913,256 +37639,10 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pullRequest", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branch", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_BranchFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "commits_some", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "head", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": 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": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_CommitFilter", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_LabelFilter", - "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": "_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", + "name": "_TagOrdering", + "description": "Ordering Enum for Tag", "fields": null, "inputFields": null, "interfaces": null, @@ -38204,38 +37684,38 @@ "deprecationReason": null }, { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", + "name": "description_asc", + "description": "Ascending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", + "name": "description_desc", + "description": "Descending sort for description", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_asc", - "description": "Ascending sort for provider", + "name": "ref_asc", + "description": "Ascending sort for ref", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", + "name": "ref_desc", + "description": "Descending sort for ref", "isDeprecated": false, "deprecationReason": null }, { - "name": "config_asc", - "description": "Ascending sort for config", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "config_desc", - "description": "Descending sort for config", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } @@ -38244,45 +37724,116 @@ }, { "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "description": "Ordering Enum for DeletedBranch", + "name": "StatusState", + "description": "Enum for StatusState", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "pending", + "description": "Value for pending", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "success", + "description": "Value for success", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "error", + "description": "Value for error", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "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": "name_asc", - "description": "Ascending sort for name", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "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 }, @@ -38303,8 +37854,8 @@ }, { "kind": "OBJECT", - "name": "DeletedBranch", - "description": "DeletedBranch-Node", + "name": "Status", + "description": "Status-Node", "fields": [ { "name": "_id", @@ -38320,7 +37871,7 @@ }, { "name": "id", - "description": "id of DeletedBranch", + "description": "id of Status", "args": [], "type": { "kind": "SCALAR", @@ -38331,8 +37882,20 @@ "deprecationReason": null }, { - "name": "name", - "description": "name of DeletedBranch", + "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", @@ -38343,8 +37906,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of DeletedBranch", + "name": "targetUrl", + "description": "targetUrl of Status", "args": [], "type": { "kind": "SCALAR", @@ -38355,103 +37918,24 @@ "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": "context", + "description": "context of Status", + "args": [], "type": { - "kind": "OBJECT", - "name": "Repo", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of Status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -38459,7 +37943,7 @@ }, { "name": "commit", - "description": "DeletedBranch commit Commit", + "description": "Status commit Commit", "args": [ { "name": "sha", @@ -38499,63 +37983,316 @@ }, "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": "pullRequests", - "description": "DeletedBranch pullRequests PullRequest", + "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": "id", + "name": "sha", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "message", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "prId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -38563,140 +38300,6 @@ "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": { @@ -38704,7 +38307,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "Commit", "ofType": null } }, @@ -38717,106 +38320,113 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "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": "_GitHubAppInstallationOrdering", - "description": "", + "name": "_ApplicationOrdering", + "description": "Ordering Enum for Application", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "owner_asc", - "description": "Ascending sort for owner", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner_desc", - "description": "Descending sort for owner", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType_asc", - "description": "Ascending sort for ownerType", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "ownerType_desc", - "description": "Descending sort for ownerType", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubAppInstallation", - "description": "", - "fields": [ + }, { - "name": "_id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "installationId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", - "description": "", + "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": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -38824,71 +38434,55 @@ }, { "name": "id", - "description": "", + "description": "id of Application", "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": "owner", - "description": "", + "name": "state", + "description": "state of Application", "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": "host", + "description": "host of Application", "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": "timestamp", + "description": "timestamp of Application", "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": "domain", + "description": "domain of Application", "args": [], "type": { "kind": "SCALAR", @@ -38899,8 +38493,8 @@ "deprecationReason": null }, { - "name": "description", - "description": "", + "name": "data", + "description": "data of Application", "args": [], "type": { "kind": "SCALAR", @@ -38911,32 +38505,85 @@ "deprecationReason": null }, { - "name": "gitHubAppResourceProvider", - "description": "", - "args": [], + "name": "commits", + "description": "Application 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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppResourceProvider", + "name": "Commit", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "token", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "GitHubAppInstallationToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -38945,76 +38592,60 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "description": "", + "kind": "INTERFACE", + "name": "SourceFingerprint", + "description": "Fingerprint of some artifact in an SCM repository", "fields": [ { - "name": "_typenames", + "name": "data", "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_id", + "name": "displayName", "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": "displayType", "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": "name", + "name": "displayValue", "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 }, { - "name": "url", + "name": "id", "description": "", "args": [], "type": { @@ -39022,7 +38653,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -39030,7 +38661,7 @@ "deprecationReason": null }, { - "name": "providerId", + "name": "name", "description": "", "args": [], "type": { @@ -39046,23 +38677,7 @@ "deprecationReason": null }, { - "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": "apiUrl", + "name": "sha", "description": "", "args": [], "type": { @@ -39078,7 +38693,7 @@ "deprecationReason": null }, { - "name": "gitUrl", + "name": "type", "description": "", "args": [], "type": { @@ -39092,539 +38707,314 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenericSourceFingerprint", + "ofType": null }, { - "name": "providerType", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "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", "isDeprecated": false, "deprecationReason": null }, { - "name": "applicationId", - "description": "the id of the atomist github app as provided by github", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "applicationName", - "description": "the name of the atomist github app", - "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": "state", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "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 - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppInstallations", - "description": "", - "args": [ - { - "name": "installationId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_GitHubAppInstallationOrdering", - "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": "GitHubAppInstallation", - "ofType": null - } - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "authProviderId", - "description": "ID of the auth provider protecting this resource", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "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 - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, + "name": "isRemote_asc", + "description": "Ascending sort for isRemote", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "will be null for this type. Appears as on the interface.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null - }, + "name": "isRemote_desc", + "description": "Descending sort for isRemote", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubAppInstallationToken", - "description": "", - "fields": [ + }, { - "name": "secret", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "remoteRepoHtmlUrl_asc", + "description": "Ascending sort for remoteRepoHtmlUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "permissions", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "remoteRepoHtmlUrl_desc", + "description": "Descending sort for remoteRepoHtmlUrl", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_GitHubAppResourceUserOrdering", - "description": "Ordering Enum for SCMId", + "name": "_SCMProviderOrdering", + "description": "Ordering Enum for SCMProvider", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "login_desc", - "description": "Descending sort for login", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubAppResourceUser", - "description": "", - "fields": [ + }, { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "id_asc", + "description": "Ascending 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": "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": "Int", - "ofType": null - } - }, + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "url_desc", + "description": "Descending sort for url", "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": "providerId_asc", + "description": "Ascending sort for providerId", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppProvider", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppResourceProvider", - "ofType": null - } - }, + "name": "providerId_desc", + "description": "Descending sort for providerId", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubAppInstallations", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppUserInstallation", - "ofType": null - } - } - }, + "name": "apiUrl_asc", + "description": "Ascending sort for apiUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "apiUrl_desc", + "description": "Descending sort for apiUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "gitUrl_asc", + "description": "Ascending sort for gitUrl", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": 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 } ], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GitHubAppUserInstallation", + "kind": "ENUM", + "name": "_ChatTeamOrdering", + "description": "Ordering Enum for ChatTeam", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_asc", + "description": "Ascending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_desc", + "description": "Descending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "domain_asc", + "description": "Ascending sort for domain", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "domain_desc", + "description": "Descending sort for domain", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "messageCount_asc", + "description": "Ascending sort for messageCount", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "messageCount_desc", + "description": "Descending sort for messageCount", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailDomain_asc", + "description": "Ascending sort for emailDomain", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "emailDomain_desc", + "description": "Descending sort for emailDomain", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistRegistration", "description": "", "fields": [ { - "name": "installationId", + "name": "name", "description": "", "args": [], "type": { @@ -39632,134 +39022,193 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "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": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "permissions", + "name": "name", "description": "", - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "owner", + "name": "name_not", "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 + "defaultValue": null }, { - "name": "ownerType", + "name": "owner", "description": "", - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OwnerType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "avatarUrl", + "name": "repoId", "description": "", - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "pullRequest", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "ofType": null + }, + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "_GitHubIdOrdering", - "description": "Ordering Enum for GitHubId", + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "description": "", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "inputFields": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null + "name": "name_not", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "login_asc", - "description": "Ascending sort for login", - "isDeprecated": false, - "deprecationReason": null + "name": "branch", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_BranchFilter", + "ofType": null + }, + "defaultValue": null }, { - "name": "login_desc", - "description": "Descending sort for login", - "isDeprecated": false, - "deprecationReason": null + "name": "commits_some", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "ofType": null + }, + "defaultValue": null }, { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null + "name": "head", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_CommitFilter", + "ofType": null + }, + "defaultValue": null }, { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null + "name": "repo", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + }, + "defaultValue": 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": "_K8PodFilter", + "name": "_BranchFilter", "description": "", "fields": null, "inputFields": [ { - "name": "containers", + "name": "name", "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isRemote", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -39771,12 +39220,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "_K8ContainerFilter", + "name": "_CommitFilter", "description": "", "fields": null, "inputFields": [ { - "name": "state", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -39791,165 +39240,51 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "description": "Ordering Enum for ImageLinked", + "kind": "INPUT_OBJECT", + "name": "_LabelFilter", + "description": "", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImageLinked", - "description": "ImageLinked-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "timestamp", - "description": "timestamp of ImageLinked", - "args": [], + "name": "name", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "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 - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_PushFilter", + "description": "", + "fields": null, + "inputFields": [ { - "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": "repo", + "description": "", "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_ReleaseOrdering", - "description": "Ordering Enum for Release", + "name": "_WorkflowOrdering", + "description": "Ordering Enum for Workflow", "fields": null, "inputFields": null, "interfaces": null, @@ -39991,14 +39326,38 @@ "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "workflowId_asc", + "description": "Ascending sort for workflowId", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "workflowId_desc", + "description": "Descending sort for workflowId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_asc", + "description": "Ascending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_desc", + "description": "Descending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config_asc", + "description": "Ascending sort for config", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config_desc", + "description": "Descending sort for config", "isDeprecated": false, "deprecationReason": null } @@ -40007,8 +39366,8 @@ }, { "kind": "ENUM", - "name": "_TeamOrdering", - "description": "Ordering Enum for Team", + "name": "_DeletedBranchOrdering", + "description": "Ordering Enum for DeletedBranch", "fields": null, "inputFields": null, "interfaces": null, @@ -40050,97 +39409,14 @@ "deprecationReason": null }, { - "name": "description_asc", - "description": "Ascending sort for description", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "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", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } @@ -40149,8 +39425,8 @@ }, { "kind": "OBJECT", - "name": "PushImpact", - "description": "PushImpact-Node", + "name": "DeletedBranch", + "description": "DeletedBranch-Node", "fields": [ { "name": "_id", @@ -40166,7 +39442,7 @@ }, { "name": "id", - "description": "id of PushImpact", + "description": "id of DeletedBranch", "args": [], "type": { "kind": "SCALAR", @@ -40177,8 +39453,8 @@ "deprecationReason": null }, { - "name": "url", - "description": "url of PushImpact", + "name": "name", + "description": "name of DeletedBranch", "args": [], "type": { "kind": "SCALAR", @@ -40189,8 +39465,8 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of PushImpact", + "name": "timestamp", + "description": "timestamp of DeletedBranch", "args": [], "type": { "kind": "SCALAR", @@ -40201,8 +39477,8 @@ "deprecationReason": null }, { - "name": "push", - "description": "PushImpact push Push", + "name": "repo", + "description": "DeletedBranch repo Repo", "args": [ { "name": "id", @@ -40215,7 +39491,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -40225,7 +39501,67 @@ "defaultValue": null }, { - "name": "branch", + "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", @@ -40237,133 +39573,58 @@ ], "type": { "kind": "OBJECT", - "name": "Push", - "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", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of PullRequestImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of PullRequestImpact", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "data", - "description": "data of PullRequestImpact", - "args": [], + "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 + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequest", - "description": "PullRequestImpact pullRequest PullRequest", + "name": "pullRequests", + "description": "DeletedBranch pullRequests PullRequest", "args": [ { "name": "id", @@ -40515,6 +39776,40 @@ }, "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": "", @@ -40527,9 +39822,13 @@ } ], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -40540,35 +39839,56 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", + "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": "_ResourceProviderOrdering", - "description": "Ordering Enum for ResourceProvider", + "name": "_GitHubAppInstallationOrdering", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "owner_asc", + "description": "Ascending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "owner_desc", + "description": "Descending sort for owner", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "ownerType_asc", + "description": "Ascending sort for ownerType", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "ownerType_desc", + "description": "Descending sort for ownerType", "isDeprecated": false, "deprecationReason": null } @@ -40576,126 +39896,179 @@ "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 - }, + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "description": "", + "fields": [ { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "installationId", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "permissions", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_desc", - "description": "Descending sort for url", + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId_asc", - "description": "Ascending sort for providerId", + "name": "ownerType", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId_desc", - "description": "Descending sort for providerId", + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "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", + "name": "avatarUrl", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_asc", - "description": "Ascending sort for providerType", + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "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", + "name": "gitHubAppResourceProvider", "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "DockerHub", + "name": "token", "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "GitHubAppInstallationToken", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "GitHubAppResourceProvider", "description": "", "fields": [ { @@ -40763,15 +40136,15 @@ "deprecationReason": null }, { - "name": "type", + "name": "url", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "DockerRegistryType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -40782,67 +40155,12 @@ "name": "providerId", "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": "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", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -40850,91 +40168,43 @@ "deprecationReason": null }, { - "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credential", - "description": "", + "name": "private", + "description": "private is this provider reachable on the public internet", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "apiUrl", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "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 } }, "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", + "name": "gitUrl", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -40946,15 +40216,15 @@ "deprecationReason": null }, { - "name": "_id", + "name": "providerType", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, @@ -40962,15 +40232,15 @@ "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "applicationId", + "description": "the id of the atomist github app as provided by github", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -40978,8 +40248,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "applicationName", + "description": "the name of the atomist github app", "args": [], "type": { "kind": "NON_NULL", @@ -40994,31 +40264,27 @@ "deprecationReason": null }, { - "name": "type", + "name": "state", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", + "name": "team", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -41026,23 +40292,82 @@ "deprecationReason": null }, { - "name": "state", + "name": "orgs", "description": "", - "args": [], + "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": "OBJECT", - "name": "ResourceProviderState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "gitHubAppInstallations", "description": "", "args": [ { - "name": "id", + "name": "installationId", "description": "", "type": { "kind": "SCALAR", @@ -41052,7 +40377,7 @@ "defaultValue": null }, { - "name": "name", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -41060,14 +40385,58 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppInstallationOrdering", + "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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "GitHubAppInstallation", "ofType": null } }, @@ -41076,31 +40445,7 @@ }, { "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "", + "description": "ID of the auth provider protecting this resource", "args": [], "type": { "kind": "SCALAR", @@ -41112,7 +40457,7 @@ }, { "name": "webhooks", - "description": "", + "description": "will be empty for this type. Appears as on the interface.", "args": [ { "name": "id", @@ -41136,6 +40481,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "credential", + "description": "will be null for this type. Appears as on the interface.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -41150,22 +40507,65 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "BinaryRepositoryType", + "kind": "OBJECT", + "name": "GitHubAppInstallationToken", "description": "", + "fields": [ + { + "name": "secret", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "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": "_GitHubAppResourceUserOrdering", + "description": "Ordering Enum for SCMId", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "maven2", - "description": "", + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "npm", - "description": "", + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null } @@ -41174,7 +40574,7 @@ }, { "kind": "OBJECT", - "name": "BinaryRepositoryProvider", + "name": "GitHubAppResourceUser", "description": "", "fields": [ { @@ -41194,7 +40594,7 @@ "deprecationReason": null }, { - "name": "_id", + "name": "id", "description": "", "args": [], "type": { @@ -41202,7 +40602,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -41210,7 +40610,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "_id", "description": "", "args": [], "type": { @@ -41218,7 +40618,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -41226,31 +40626,38 @@ "deprecationReason": null }, { - "name": "name", + "name": "credential", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INTERFACE", + "name": "Credential", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "provider", "description": "", - "args": [], + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "BinaryRepositoryType", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -41258,15 +40665,15 @@ "deprecationReason": null }, { - "name": "providerId", + "name": "gitHubAppProvider", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", "ofType": null } }, @@ -41274,48 +40681,35 @@ "deprecationReason": null }, { - "name": "state", + "name": "gitHubAppInstallations", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppUserInstallation", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", + "name": "login", "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 - } - ], + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -41323,31 +40717,52 @@ "deprecationReason": null }, { - "name": "authProviderId", + "name": "person", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "credential", + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GitHubAppUserInstallation", + "description": "", + "fields": [ + { + "name": "installationId", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "permissions", "description": "", "args": [], "type": { @@ -41359,48 +40774,148 @@ "deprecationReason": null }, { - "name": "webhooks", + "name": "owner", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "avatarUrl", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [ + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_GitHubIdOrdering", + "description": "Ordering Enum for GitHubId", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login_asc", + "description": "Ascending sort for login", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login_desc", + "description": "Descending sort for login", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "containers", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "description": "Ordering Enum for UserJoinedChannel", + "name": "_ImageLinkedOrdering", + "description": "Ordering Enum for ImageLinked", "fields": null, "inputFields": null, "interfaces": null, @@ -41418,14 +40933,14 @@ "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } @@ -41434,8 +40949,8 @@ }, { "kind": "OBJECT", - "name": "UserJoinedChannel", - "description": "UserJoinedChannel-Node", + "name": "ImageLinked", + "description": "ImageLinked-Node", "fields": [ { "name": "_id", @@ -41450,93 +40965,23 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of UserJoinedChannel", + "name": "timestamp", + "description": "timestamp of ImageLinked", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", - "description": "UserJoinedChannel user ChatId", + "name": "image", + "description": "ImageLinked image DockerImage", "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", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -41546,7 +40991,7 @@ "defaultValue": null }, { - "name": "isBot", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -41556,7 +41001,7 @@ "defaultValue": null }, { - "name": "timezoneLabel", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -41568,38 +41013,18 @@ ], "type": { "kind": "OBJECT", - "name": "ChatId", + "name": "DockerImage", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "UserJoinedChannel channel ChatChannel", + "name": "commit", + "description": "ImageLinked commit Commit", "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": "sha", "description": "", "type": { "kind": "SCALAR", @@ -41609,7 +41034,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -41619,7 +41044,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -41627,41 +41052,11 @@ "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 } ], "type": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Commit", "ofType": null }, "isDeprecated": false, @@ -41674,353 +41069,238 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "GenericResourceUser", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "_ReleaseOrdering", + "description": "Ordering Enum for Release", + "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": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "person", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "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": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "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 } ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SystemAccount", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "_TeamOrdering", + "description": "Ordering Enum for Team", + "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": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "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": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdBy", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - }, + "name": "description_asc", + "description": "Ascending sort for description", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": 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 } ], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "_PushImpactOrdering", + "description": "Ordering Enum for PushImpact", + "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": "Int", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending 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": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "", + "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", + "fields": [ + { + "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": "clusters", - "description": "", + "name": "id", + "description": "id of PushImpact", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KubernetesCluster", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "", + "name": "url", + "description": "url of PushImpact", "args": [], "type": { "kind": "SCALAR", @@ -42031,33 +41311,33 @@ "deprecationReason": null }, { - "name": "state", - "description": "", + "name": "data", + "description": "data of PushImpact", "args": [], "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", + "name": "push", + "description": "PushImpact push Push", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42067,7 +41347,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "branch", "description": "", "type": { "kind": "SCALAR", @@ -42078,504 +41358,542 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } + "kind": "OBJECT", + "name": "Push", + "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": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "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": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KubernetesCluster", - "description": "", - "fields": [ + "name": "url_desc", + "description": "Descending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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": "Password", - "description": "", + "name": "PullRequestImpact", + "description": "PullRequestImpact-Node", "fields": [ - { - "name": "_typenames", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_id", - "description": "", + "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": "id", - "description": "", + "description": "id of PullRequestImpact", "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": "owner", - "description": "", + "name": "url", + "description": "url of PullRequestImpact", "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", - "description": "", + "name": "data", + "description": "data of PullRequestImpact", "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": [ + }, { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - ], + "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": "OBJECT", + "name": "PullRequest", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CommitFingerprintImpact", - "description": "", - "fields": [ + "kind": "ENUM", + "name": "_ResourceProviderOrdering", + "description": "Ordering Enum for ResourceProvider", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "diffs", - "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 - } - } - } - }, + "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": "offTarget", - "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 - } - } - } - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Branch", - "ofType": 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": "commit", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "previousCommit", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintDiff", - "description": "", - "fields": [ + }, { - "name": "from", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - }, + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "to", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": 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 } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PagingInfoInput", + "kind": "ENUM", + "name": "DockerRegistryType", "description": "", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "after", + "name": "JFrog", "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DockerHub", + "description": "", + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CommitsWithFingerprints", + "name": "DockerRegistryProvider", "description": "", "fields": [ { - "name": "_paging", + "name": "_typenames", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "PagingInfo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commits", + "name": "_id", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FingerprintedCommit", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PagingInfo", - "description": "", - "fields": [ + }, { - "name": "after", - "description": "If present, indicates that there are more results", + "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 - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintedCommit", - "description": "A commit", - "fields": [ + }, { - "name": "analysis", + "name": "name", "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": "isDefaultBranch", + "name": "type", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "DockerRegistryType", "ofType": null } }, @@ -42583,62 +41901,70 @@ "deprecationReason": null }, { - "name": "branch", + "name": "providerId", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", + "name": "state", "description": "", "args": [], "type": { "kind": "OBJECT", - "name": "Commit", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", + "name": "team", "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Repo", - "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?", - "args": [], + "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": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -42646,79 +41972,62 @@ "deprecationReason": null }, { - "name": "latestSemVerAvailable", - "description": "Latest semver available if the SourceFingerprint supports it", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "latestSemVerUsed", - "description": "Latest semver used if the SourceFingerprint supports it", + "name": "authProviderId", + "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": "credential", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "SourceFingerprintStats", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostRecentlyUsed", - "description": "Which value/sha has been most recently seen?", + "name": "url", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "SourceFingerprintStats", + "kind": "SCALAR", + "name": "String", "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": "Int", - "ofType": null + "name": "webhooks", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalVariants", - "description": "How many different values/shas are there for this type/name?", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Webhook", "ofType": null } }, @@ -42727,25 +42036,31 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SourceFingerprintStats", + "name": "GenericResourceProvider", "description": "", "fields": [ { - "name": "fingerprint", + "name": "_typenames", "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -42753,8 +42068,8 @@ "deprecationReason": null }, { - "name": "inRepos", - "description": "How many repos has this fingerprint been seen in?", + "name": "_id", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -42767,47 +42082,25 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintTarget", - "description": "", - "fields": [ + }, { - "name": "fingerprint", + "name": "id", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "SourceFingerprint", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintCounts", - "description": "", - "fields": [ + }, { - "name": "count", + "name": "name", "description": "", "args": [], "type": { @@ -42815,7 +42108,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -42823,74 +42116,80 @@ "deprecationReason": null }, { - "name": "mostFrequentlyUsed", + "name": "type", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mostRecentlyUsed", + "name": "providerId", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "SourceFingerprint", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "types", + "name": "state", "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 - } - } - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FingerprintTypeCount", - "description": "", - "fields": [ + }, { - "name": "count", + "name": "team", "description": "", - "args": [], + "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": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -42898,82 +42197,62 @@ "deprecationReason": null }, { - "name": "names", + "name": "authProviderId", "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 - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "credential", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INTERFACE", + "name": "Credential", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FinterprintNameCount", - "description": "", - "fields": [ + }, { - "name": "count", + "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 }, { - "name": "name", + "name": "webhooks", "description": "", - "args": [], + "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 } }, @@ -42982,38 +42261,32 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "AtmJobState", - "description": "The state of an AtmJob", + "name": "BinaryRepositoryType", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "preparing", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "running", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "completed", + "name": "maven2", "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "timedout", + "name": "npm", "description": "", "isDeprecated": false, "deprecationReason": null @@ -43023,24 +42296,28 @@ }, { "kind": "OBJECT", - "name": "AtmJob", - "description": "A AtmJob, made up of many AtmJobTasks", + "name": "BinaryRepositoryProvider", + "description": "", "fields": [ { - "name": "completedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJob was considered complete (when all tasks were complete)", + "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": "completedCount", - "description": "The number of AtmJobTasks on this AtmJob that are in a completed state", + "name": "_id", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -43055,15 +42332,15 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": "An ISO8601 timestamp generated by the API when the AtmJob is created", + "name": "id", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -43071,39 +42348,15 @@ "deprecationReason": null }, { - "name": "data", - "description": "Used to store additional information about this AtmJob", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "A description for this AtmJob", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "The ID of this AtmJob. Generated by the API.", + "name": "name", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -43111,15 +42364,15 @@ "deprecationReason": null }, { - "name": "jobCount", - "description": "The number of AtmJobTasks that make up this job", + "name": "type", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "BinaryRepositoryType", "ofType": null } }, @@ -43127,51 +42380,64 @@ "deprecationReason": null }, { - "name": "jobTasks", - "description": "A list of AtmJobTasks that make up this job", + "name": "providerId", + "description": "", "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 - } - } + "kind": "SCALAR", + "name": "String", + "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.", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "A name for this AtmJob", - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, @@ -43179,9 +42445,9 @@ "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": [], + "name": "authProviderId", + "description": "", + "args": [], "type": { "kind": "SCALAR", "name": "String", @@ -43191,63 +42457,50 @@ "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", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INTERFACE", + "name": "Credential", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJob is updated", + "name": "url", + "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 }, { - "name": "team", + "name": "webhooks", "description": "", - "args": [], + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "Webhook", "ofType": null } }, @@ -43256,65 +42509,307 @@ } ], "inputFields": null, - "interfaces": [], + "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": "AtmJobTask", - "description": "A Task that makes up part of a AtmJob", + "name": "UserJoinedChannel", + "description": "UserJoinedChannel-Node", "fields": [ { - "name": "completedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJobTask was considered complete", + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt", - "description": "An ISO8601 timestamp generated by the API when the AtmJobTask is created", + "name": "id", + "description": "id of UserJoinedChannel", "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": "data", - "description": "Used to store additional information about this AtmJobTask", - "args": [], + "name": "user", + "description": "UserJoinedChannel user 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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this AtmJobTask. Generated by the API.", + "name": "channel", + "description": "UserJoinedChannel channel 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 + } + ], + "type": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GenericResourceUser", + "description": "", + "fields": [ + { + "name": "_typenames", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -43322,15 +42817,15 @@ "deprecationReason": null }, { - "name": "isCompleted", - "description": "Is true if the task is in a completed state", + "name": "id", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -43338,59 +42833,62 @@ "deprecationReason": null }, { - "name": "job", - "description": "The owning job", + "name": "_id", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", - "description": "Used to store additional information about the state of this AtmJobTask", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "A name for this AtmJobTask", + "name": "person", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Person", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "The AtmJobTaskState of this AtmJobTask", - "args": [], + "name": "provider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtmJobTaskState", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -43398,8 +42896,8 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "An ISO8601 timestamp set by the API when the AtmJobTask is updated", + "name": "login", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -43415,93 +42913,33 @@ } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AtmJobTaskState", - "description": "The state of a AtmJobTask", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created", - "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 - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_AtomistLogOrdering", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "asc", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": [ { - "name": "desc", - "description": "", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistLog", + "name": "SystemAccount", "description": "", "fields": [ { - "name": "category", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "correlation_context", + "name": "_typenames", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -43523,43 +42961,58 @@ "deprecationReason": null }, { - "name": "level", + "name": "_id", "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "message", + "name": "credential", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_id", + "name": "provider", "description": "", - "args": [], + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", + "name": "login", "description": "", "args": [], "type": { @@ -43573,32 +43026,122 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", + "name": "KubernetesClusterProvider", "description": "", "fields": [ { - "name": "automation", + "name": "_typenames", "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistLogAutomation", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "correlation_id", + "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": "clusters", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KubernetesCluster", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", "description": "", "args": [], "type": { @@ -43608,20 +43151,68 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistLogAutomation", - "description": "", - "fields": [ + }, { - "name": "name", + "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 + }, + { + "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": "authProviderId", "description": "", "args": [], "type": { @@ -43633,7 +43224,46 @@ "deprecationReason": null }, { - "name": "version", + "name": "credential", + "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", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", "description": "", "args": [], "type": { @@ -43646,17 +43276,23 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "Ok", + "name": "KubernetesCluster", "description": "", "fields": [ { - "name": "ok", + "name": "name", "description": "", "args": [], "type": { @@ -43664,7 +43300,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -43678,133 +43314,214 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "BucketUnit", + "kind": "OBJECT", + "name": "Password", "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "YEAR", - "description": "Group events by year.", + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "MONTH", - "description": "Group events by month.", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "DAY", - "description": "Group events by day.", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "HOUR", - "description": "Group events by hour.", + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "MINUTE", - "description": "Group events by minute.", + "name": "secret", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "SECOND", - "description": "Group events by second.", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "Credential", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "EventType", + "kind": "OBJECT", + "name": "CommitFingerprintImpact", "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "CHAT", - "description": "Chat events which have been received.", + "name": "diffs", + "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 + } + } + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "CUSTOM", - "description": "Custom events which have been received.", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "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.", + "name": "offTarget", + "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 + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatCount", - "description": "The number of chat events in this time bucket.", + "name": "branch", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "customCount", - "description": "The number of custom events in this time bucket.", + "name": "commit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "scmCount", - "description": "The number of SCM events in this time bucket.", + "name": "previousCommit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, @@ -43817,185 +43534,120 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_Ordering", - "description": "asc or desc ordering. Must be used with orderBy", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "FingerprintDiff", + "description": "", + "fields": [ { - "name": "desc", - "description": "Descending order", + "name": "from", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "asc", - "description": "Ascending order", + "name": "to", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": 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": "references", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "INPUT_OBJECT", + "name": "PagingInfoInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "fixes", - "description": null, - "isDeprecated": false, - "deprecationReason": null + "name": "after", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CommitIssueRelationship", - "description": null, + "name": "CommitsWithFingerprints", + "description": "", "fields": [ { - "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 - } - ], + "name": "_paging", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", + "name": "PagingInfo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "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": "commits", + "description": "", + "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": "FingerprintedCommit", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PagingInfo", + "description": "", + "fields": [ { - "name": "id", - "description": "The ID of this CommitIssueRelationship", + "name": "after", + "description": "If present, indicates that there are more results", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -44009,40 +43661,80 @@ }, { "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", - "description": null, + "name": "FingerprintedCommit", + "description": "A commit", "fields": [ { - "name": "owner", - "description": null, + "name": "analysis", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "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": "isDefaultBranch", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "commit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "repo", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, @@ -44056,143 +43748,101 @@ }, { "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "description": null, + "name": "FingerprintAggregates", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "inRepos", + "description": "How many repos contain this fingeprint type/name?", "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": "owner", - "description": null, + "name": "latestSemVerAvailable", + "description": "Latest semver available if the SourceFingerprint supports it", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "latestSemVerUsed", + "description": "Latest semver used if the SourceFingerprint supports it", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SourceFingerprintStats", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Deployment", - "description": null, - "fields": [ + }, { - "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 - } - ], + "name": "mostFrequentlyUsed", + "description": "Which value/sha has been most frequently seen?", + "args": [], "type": { "kind": "OBJECT", - "name": "DeploymentCommit", + "name": "SourceFingerprintStats", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": null, + "name": "mostRecentlyUsed", + "description": "Which value/sha has been most recently seen?", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SourceFingerprintStats", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "totalRepos", + "description": "How many repos have been seen in total?", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Deployment", + "name": "totalVariants", + "description": "How many different values/shas are there for this type/name?", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -44205,41 +43855,64 @@ }, { "kind": "OBJECT", - "name": "DeploymentCommit", - "description": null, + "name": "SourceFingerprintStats", + "description": "", "fields": [ { - "name": "owner", - "description": null, + "name": "fingerprint", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "inRepos", + "description": "How many repos has this fingerprint been seen in?", "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": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FingerprintTarget", + "description": "", + "fields": [ { - "name": "sha", - "description": null, + "name": "fingerprint", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -44252,163 +43925,69 @@ }, { "kind": "OBJECT", - "name": "IssueRelationship", - "description": null, + "name": "FingerprintCounts", + "description": "", "fields": [ { - "name": "relationshipId", - "description": null, + "name": "count", + "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": "mostFrequentlyUsed", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, + "name": "mostRecentlyUsed", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "INTERFACE", + "name": "SourceFingerprint", + "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": "types", + "description": "", + "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": "FingerprintTypeCount", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "The ID of this IssueRelationship", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -44421,131 +44000,61 @@ }, { "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "description": null, + "name": "FingerprintTypeCount", + "description": "", "fields": [ { - "name": "issue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, + "name": "count", + "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": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmBuildIdentifier", - "description": null, - "fields": [ - { - "name": "identifier", - "description": null, + "name": "names", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "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", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FinterprintNameCount", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmBuildIdentifier", + "name": "type", + "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 @@ -44558,41 +44067,37 @@ }, { "kind": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "description": null, + "name": "FinterprintNameCount", + "description": "", "fields": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, + "name": "count", + "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": "providerId", - "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 @@ -44605,21 +44110,33 @@ }, { "kind": "ENUM", - "name": "SdmDeployState", - "description": null, + "name": "AtmJobState", + "description": "The state of an AtmJob", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "requested", - "description": null, + "name": "preparing", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "disabled", - "description": null, + "name": "running", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timedout", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -44628,12 +44145,12 @@ }, { "kind": "OBJECT", - "name": "SdmDeployEnablement", - "description": null, + "name": "AtmJob", + "description": "A AtmJob, made up of many AtmJobTasks", "fields": [ { - "name": "owner", - "description": null, + "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", @@ -44644,20 +44161,40 @@ "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "completedCount", + "description": "The number of AtmJobTasks on this AtmJob that are in a completed state", "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": "repo", - "description": 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", "args": [], "type": { "kind": "SCALAR", @@ -44668,12 +44205,12 @@ "deprecationReason": null }, { - "name": "state", - "description": null, + "name": "description", + "description": "A description for this AtmJob", "args": [], "type": { - "kind": "ENUM", - "name": "SdmDeployState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -44681,175 +44218,162 @@ }, { "name": "id", - "description": "The ID of this SdmDeployEnablement", + "description": "The ID of this AtmJob. Generated by the API.", "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": "SdmVersion", - "description": null, - "fields": [ + }, { - "name": "branch", - "description": null, + "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 + } }, "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": "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtmJobTask", "ofType": null } - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": 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": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "name", + "description": "A name for this AtmJob", "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", - "description": "The ID of this SdmVersion", + "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": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "state", + "description": "The AtmJobState of this AtmJob", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobState", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "taskCount", + "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 + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJob is updated", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, + "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 } ], @@ -44860,67 +44384,12 @@ }, { "kind": "OBJECT", - "name": "SdmGoalSetBadge", - "description": null, + "name": "AtmJobTask", + "description": "A Task that makes up part of a AtmJob", "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": "sdm", - "description": null, + "name": "completedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask was considered complete", "args": [], "type": { "kind": "SCALAR", @@ -44931,90 +44400,84 @@ "deprecationReason": null }, { - "name": "token", - "description": null, + "name": "createdAt", + "description": "An ISO8601 timestamp generated by the API when the AtmJobTask is created", "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", - "description": "The ID of this SdmGoalSetBadge", + "name": "data", + "description": "Used to store additional information about this AtmJobTask", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalSetBadgeRepository", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "id", + "description": "The ID of this AtmJobTask. Generated by the API.", "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": "owner", - "description": null, + "name": "isCompleted", + "description": "Is true if the task is in a completed state", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "job", + "description": "The owning job", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmPreference", - "description": null, - "fields": [ + }, { - "name": "key", - "description": null, + "name": "message", + "description": "Used to store additional information about the state of this AtmJobTask", "args": [], "type": { "kind": "SCALAR", @@ -45025,37 +44488,49 @@ "deprecationReason": null }, { - "name": "ttl", - "description": null, + "name": "name", + "description": "A name for this AtmJobTask", "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": "value", - "description": null, + "name": "state", + "description": "The AtmJobTaskState of this AtmJobTask", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmPreference", + "name": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask is updated", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -45067,194 +44542,135 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmRepoProvenance", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "AtmJobTaskState", + "description": "The state of a AtmJobTask", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "provenance", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "SdmProvenance", - "ofType": null - }, + "name": "created", + "description": "", "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": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmRepoProvenance", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "failed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "", "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_AtomistLogOrdering", + "description": "", + "fields": null, "inputFields": null, - "interfaces": [], - "enumValues": null, + "interfaces": null, + "enumValues": [ + { + "name": "asc", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "OBJECT", - "name": "PolicyLog", - "description": null, + "name": "AtomistLog", + "description": "", "fields": [ { - "name": "apply", - "description": null, + "name": "category", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "ApplyPolicyLog", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "manage", - "description": null, + "name": "correlation_context", + "description": "", "args": [], "type": { "kind": "OBJECT", - "name": "ManageTargetPolicyLog", + "name": "AtomistLogCorrelationContext", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "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": "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": "level", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "ManageSubscriptionPolicyLog", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "message", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "team_id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -45265,13 +44681,17 @@ "deprecationReason": null }, { - "name": "id", - "description": "The ID of this PolicyLog", + "name": "timestamp", + "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 @@ -45284,24 +44704,24 @@ }, { "kind": "OBJECT", - "name": "ApplyPolicyLog", - "description": null, + "name": "AtomistLogCorrelationContext", + "description": "", "fields": [ { - "name": "_prId", - "description": null, + "name": "automation", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "AtomistLogAutomation", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "_sha", - "description": null, + "name": "correlation_id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -45310,10 +44730,21 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistLogAutomation", + "description": "", + "fields": [ { - "name": "branch", - "description": null, + "name": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -45324,20 +44755,8 @@ "deprecationReason": null }, { - "name": "commit", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, + "name": "version", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -45346,39 +44765,30 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Ok", + "description": "", + "fields": [ { - "name": "pullRequest", - "description": null, + "name": "ok", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ApplyPolicyState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetSha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -45391,27 +44801,45 @@ }, { "kind": "ENUM", - "name": "ApplyPolicyState", - "description": null, + "name": "BucketUnit", + "description": "", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "success", - "description": null, + "name": "YEAR", + "description": "Group events by year.", "isDeprecated": false, "deprecationReason": null }, { - "name": "no_change", - "description": null, + "name": "MONTH", + "description": "Group events by month.", "isDeprecated": false, "deprecationReason": null }, { - "name": "failure", - "description": null, + "name": "DAY", + "description": "Group events by day.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "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 } @@ -45419,89 +44847,86 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "ManageTargetPolicyLog", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "EventType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ManageTargetPolicyAction", - "ofType": null - }, + "name": "CHAT", + "description": "Chat events which have been received.", "isDeprecated": false, "deprecationReason": null }, { - "name": "author", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "CUSTOM", + "description": "Custom events which have been received.", "isDeprecated": false, "deprecationReason": null }, { - "name": "reason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": 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": "streamId", - "description": null, + "name": "bucket", + "description": "The start date-time of this row.", "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": "streamName", - "description": null, + "name": "chatCount", + "description": "The number of chat events in this time bucket.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "targetSha", - "description": null, + "name": "customCount", + "description": "The number of custom events in this time bucket.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "targetValue", - "description": null, + "name": "scmCount", + "description": "The number of SCM events in this time bucket.", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -45515,20 +44940,43 @@ }, { "kind": "ENUM", - "name": "ManageTargetPolicyAction", + "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", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "unset", + "name": "references", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "set", + "name": "fixes", "description": null, "isDeprecated": false, "deprecationReason": null @@ -45538,59 +44986,156 @@ }, { "kind": "OBJECT", - "name": "ManageSubscriptionPolicyLog", + "name": "CommitIssueRelationship", "description": null, "fields": [ { - "name": "action", + "name": "commit", "description": null, - "args": [], + "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": "ManageSubscriptionPolicyAction", + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "author", + "name": "issue", "description": null, - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branch", + "name": "type", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommitIssueRelationshipType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "id", + "description": "The ID of this CommitIssueRelationship", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", + "description": null, + "fields": [ { - "name": "reason", + "name": "owner", "description": null, "args": [], "type": { @@ -45614,19 +45159,30 @@ "deprecationReason": null }, { - "name": "streamId", + "name": "sha", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", + "description": null, + "fields": [ { - "name": "streamName", + "name": "name", "description": null, "args": [], "type": { @@ -45638,7 +45194,7 @@ "deprecationReason": null }, { - "name": "targetSha", + "name": "owner", "description": null, "args": [], "type": { @@ -45650,7 +45206,7 @@ "deprecationReason": null }, { - "name": "targetValue", + "name": "repo", "description": null, "args": [], "type": { @@ -45668,52 +45224,84 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ManageSubscriptionPolicyAction", + "kind": "OBJECT", + "name": "Deployment", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ignore", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "unignore", + "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": "OBJECT", + "name": "DeploymentCommit", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "subscribe", + "name": "environment", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unsubscribe", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PolicyTargetStream", - "description": null, - "fields": [ - { - "name": "name", + "name": "ts", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -45721,7 +45309,7 @@ }, { "name": "id", - "description": "The ID of this PolicyTargetStream", + "description": "The ID of this Deployment", "args": [], "type": { "kind": "SCALAR", @@ -45739,11 +45327,11 @@ }, { "kind": "OBJECT", - "name": "PolicyTarget", + "name": "DeploymentCommit", "description": null, "fields": [ { - "name": "data", + "name": "owner", "description": null, "args": [], "type": { @@ -45755,7 +45343,7 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "repo", "description": null, "args": [], "type": { @@ -45767,7 +45355,7 @@ "deprecationReason": null }, { - "name": "displayValue", + "name": "sha", "description": null, "args": [], "type": { @@ -45777,9 +45365,20 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationship", + "description": null, + "fields": [ { - "name": "name", + "name": "relationshipId", "description": null, "args": [], "type": { @@ -45791,35 +45390,62 @@ "deprecationReason": null }, { - "name": "sha", + "name": "source", "description": null, - "args": [], + "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 }, "isDeprecated": false, "deprecationReason": null }, { - "name": "streams", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", + "name": "state", "description": null, "args": [], "type": { @@ -45831,78 +45457,39 @@ "deprecationReason": null }, { - "name": "id", - "description": "The ID of this PolicyTarget", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Card", - "description": null, - "fields": [ - { - "name": "actionGroups", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CardBody", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "collaborators", + "name": "target", "description": null, "args": [ { - "name": "login", + "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", @@ -45917,98 +45504,62 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardCollaborator", - "ofType": null - } + "kind": "OBJECT", + "name": "IssueRelationshipIssue", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", + "name": "type", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardBody", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "correlations", - "description": null, + "name": "id", + "description": "The ID of this IssueRelationship", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardCorrelation", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationshipIssue", + "description": null, + "fields": [ { - "name": "events", + "name": "issue", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardEvent", - "ofType": null - } - }, - "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 - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "key", + "name": "owner", "description": null, "args": [], "type": { @@ -46020,7 +45571,7 @@ "deprecationReason": null }, { - "name": "post", + "name": "repo", "description": null, "args": [], "type": { @@ -46030,56 +45581,36 @@ }, "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 - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmBuildIdentifier", + "description": null, + "fields": [ { - "name": "reactions", + "name": "identifier", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardReaction", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repository", + "name": "repo", "description": null, "args": [ { - "name": "owner", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -46093,7 +45624,7 @@ "defaultValue": null }, { - "name": "name", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -46107,7 +45638,7 @@ "defaultValue": null }, { - "name": "slug", + "name": "providerId", "description": null, "type": { "kind": "LIST", @@ -46123,62 +45654,61 @@ ], "type": { "kind": "OBJECT", - "name": "CardRepository", + "name": "SdmBuildIdentifierRepository", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shortTitle", - "description": null, + "name": "id", + "description": "The ID of this SdmBuildIdentifier", "args": [], "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CardTitle", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmBuildIdentifierRepository", + "description": null, + "fields": [ { - "name": "ts", + "name": "name", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ttl", + "name": "owner", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "providerId", "description": null, "args": [], "type": { @@ -46188,18 +45718,6 @@ }, "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, @@ -46208,51 +45726,35 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardActionGroup", + "kind": "ENUM", + "name": "SdmDeployState", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", + "name": "requested", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", + "name": "disabled", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardAction", + "name": "SdmDeployEnablement", "description": null, "fields": [ { - "name": "command", + "name": "owner", "description": null, "args": [], "type": { @@ -46264,19 +45766,19 @@ "deprecationReason": null }, { - "name": "confirm", + "name": "providerId", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "CardActionConfirmation", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parameterName", + "name": "repo", "description": null, "args": [], "type": { @@ -46288,67 +45790,109 @@ "deprecationReason": null }, { - "name": "parameterOptionGroups", + "name": "state", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", - "ofType": null - } + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parameterOptions", - "description": null, + "name": "id", + "description": "The ID of this SdmDeployEnablement", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmVersion", + "description": null, + "fields": [ { - "name": "parameters", + "name": "branch", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", + "name": "repo", "description": null, - "args": [], + "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": "SdmVersionRepository", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "sha", "description": null, "args": [], "type": { @@ -46360,7 +45904,7 @@ "deprecationReason": null }, { - "name": "text", + "name": "version", "description": null, "args": [], "type": { @@ -46372,12 +45916,12 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "id", + "description": "The ID of this SdmVersion", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -46391,23 +45935,11 @@ }, { "kind": "OBJECT", - "name": "CardActionConfirmation", + "name": "SdmVersionRepository", "description": null, "fields": [ { - "name": "body", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dismiss", + "name": "name", "description": null, "args": [], "type": { @@ -46419,7 +45951,7 @@ "deprecationReason": null }, { - "name": "ok", + "name": "owner", "description": null, "args": [], "type": { @@ -46431,7 +45963,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "providerId", "description": null, "args": [], "type": { @@ -46450,50 +45982,66 @@ }, { "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", + "name": "SdmGoalSetBadge", "description": null, "fields": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", + "name": "repo", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "description": null, - "fields": [ + "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": "name", + "name": "sdm", "description": null, "args": [], "type": { @@ -46505,7 +46053,7 @@ "deprecationReason": null }, { - "name": "value", + "name": "token", "description": null, "args": [], "type": { @@ -46515,6 +46063,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this SdmGoalSetBadge", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -46524,7 +46084,7 @@ }, { "kind": "OBJECT", - "name": "CardActionParameter", + "name": "SdmGoalSetBadgeRepository", "description": null, "fields": [ { @@ -46540,7 +46100,19 @@ "deprecationReason": null }, { - "name": "value", + "name": "owner", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", "description": null, "args": [], "type": { @@ -46559,23 +46131,11 @@ }, { "kind": "OBJECT", - "name": "CardBody", + "name": "SdmPreference", "description": null, "fields": [ { - "name": "avatar", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hint", + "name": "key", "description": null, "args": [], "type": { @@ -46587,19 +46147,19 @@ "deprecationReason": null }, { - "name": "login", + "name": "ttl", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", + "name": "value", "description": null, "args": [], "type": { @@ -46611,12 +46171,12 @@ "deprecationReason": null }, { - "name": "ts", - "description": null, + "name": "id", + "description": "The ID of this SdmPreference", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -46630,40 +46190,83 @@ }, { "kind": "OBJECT", - "name": "CardCollaborator", + "name": "SdmRepoProvenance", "description": null, "fields": [ { - "name": "avatar", + "name": "provenance", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SdmProvenance", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", + "name": "repo", "description": null, - "args": [], + "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 }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, + "name": "id", + "description": "The ID of this SdmRepoProvenance", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -46677,39 +46280,35 @@ }, { "kind": "OBJECT", - "name": "CardCorrelation", + "name": "PolicyLog", "description": null, "fields": [ { - "name": "body", + "name": "apply", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CorrelationBody", - "ofType": null - } + "kind": "OBJECT", + "name": "ApplyPolicyLog", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "icon", + "name": "manage", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ManageTargetPolicyLog", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", + "name": "name", "description": null, "args": [], "type": { @@ -46721,48 +46320,79 @@ "deprecationReason": null }, { - "name": "shortTitle", + "name": "subscribe", "description": null, - "args": [], + "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": "String", + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "ts", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", + "name": "type", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "id", + "description": "The ID of this PolicyLog", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -46776,23 +46406,23 @@ }, { "kind": "OBJECT", - "name": "CorrelationBody", + "name": "ApplyPolicyLog", "description": null, "fields": [ { - "name": "icon", + "name": "_prId", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", + "name": "_sha", "description": null, "args": [], "type": { @@ -46802,52 +46432,33 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardEvent", - "description": null, - "fields": [ + }, { - "name": "actionGroups", + "name": "branch", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "actions", + "name": "commit", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } + "kind": "OBJECT", + "name": "Commit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "icon", + "name": "message", "description": null, "args": [], "type": { @@ -46859,24 +46470,36 @@ "deprecationReason": null }, { - "name": "text", + "name": "pullRequest", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PullRequest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ApplyPolicyState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetSha", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -46889,40 +46512,53 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardSdmGoalSet", + "kind": "ENUM", + "name": "ApplyPolicyState", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", + "name": "success", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "duration", + "name": "no_change", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "failure", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ManageTargetPolicyLog", + "description": null, + "fields": [ + { + "name": "action", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ManageTargetPolicyAction", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSet", + "name": "author", "description": null, "args": [], "type": { @@ -46934,7 +46570,7 @@ "deprecationReason": null }, { - "name": "goalSetId", + "name": "reason", "description": null, "args": [], "type": { @@ -46946,23 +46582,19 @@ "deprecationReason": null }, { - "name": "goals", + "name": "streamId", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardSdmGoal", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", + "name": "streamName", "description": null, "args": [], "type": { @@ -46974,7 +46606,7 @@ "deprecationReason": null }, { - "name": "state", + "name": "targetSha", "description": null, "args": [], "type": { @@ -46986,12 +46618,12 @@ "deprecationReason": null }, { - "name": "ts", + "name": "targetValue", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -47004,52 +46636,47 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardSdmGoal", + "kind": "ENUM", + "name": "ManageTargetPolicyAction", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "actions", + "name": "unset", "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardAction", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "set", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", + "description": null, + "fields": [ { - "name": "environment", + "name": "action", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", + "name": "author", "description": null, "args": [], "type": { @@ -47061,7 +46688,7 @@ "deprecationReason": null }, { - "name": "logLink", + "name": "branch", "description": null, "args": [], "type": { @@ -47073,7 +46700,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "owner", "description": null, "args": [], "type": { @@ -47085,7 +46712,7 @@ "deprecationReason": null }, { - "name": "state", + "name": "reason", "description": null, "args": [], "type": { @@ -47097,53 +46724,31 @@ "deprecationReason": null }, { - "name": "ts", + "name": "repo", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardProvenance", - "description": null, - "fields": [ + }, { - "name": "name", + "name": "streamId", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardReaction", - "description": null, - "fields": [ + }, { - "name": "avatar", + "name": "streamName", "description": null, "args": [], "type": { @@ -47155,7 +46760,7 @@ "deprecationReason": null }, { - "name": "login", + "name": "targetSha", "description": null, "args": [], "type": { @@ -47167,7 +46772,7 @@ "deprecationReason": null }, { - "name": "reaction", + "name": "targetValue", "description": null, "args": [], "type": { @@ -47185,24 +46790,47 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardRepository", + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", "description": null, - "fields": [ + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", + "name": "ignore", "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", + "name": "unignore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsubscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "description": null, + "fields": [ + { + "name": "name", "description": null, "args": [], "type": { @@ -47214,12 +46842,12 @@ "deprecationReason": null }, { - "name": "slug", - "description": null, + "name": "id", + "description": "The ID of this PolicyTargetStream", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -47233,11 +46861,11 @@ }, { "kind": "OBJECT", - "name": "CardTitle", + "name": "PolicyTarget", "description": null, "fields": [ { - "name": "icon", + "name": "data", "description": null, "args": [], "type": { @@ -47249,7 +46877,71 @@ "deprecationReason": null }, { - "name": "text", + "name": "displayName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "displayValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "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": "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": { @@ -47259,6 +46951,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this PolicyTarget", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -47268,9 +46972,25 @@ }, { "kind": "OBJECT", - "name": "Notification", + "name": "Card", "description": null, "fields": [ + { + "name": "actionGroups", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "actions", "description": null, @@ -47280,7 +47000,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationAction", + "name": "CardAction", "ofType": null } }, @@ -47292,11 +47012,38 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "CardBody", + "ofType": null + }, + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardCollaborator", "ofType": null } }, @@ -47304,15 +47051,15 @@ "deprecationReason": null }, { - "name": "contentType", + "name": "comments", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardBody", "ofType": null } }, @@ -47320,15 +47067,15 @@ "deprecationReason": null }, { - "name": "correlationId", + "name": "correlations", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardCorrelation", "ofType": null } }, @@ -47336,21 +47083,64 @@ "deprecationReason": null }, { - "name": "key", + "name": "events", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "CardEvent", "ofType": null } }, "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "post", "description": null, @@ -47364,11 +47154,82 @@ "deprecationReason": null }, { - "name": "recipient", + "name": "provenance", "description": null, "args": [ { - "name": "address", + "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reactions", + "description": null, + "args": [], + "type": { + "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", @@ -47384,7 +47245,31 @@ ], "type": { "kind": "OBJECT", - "name": "NotificationRecipient", + "name": "CardRepository", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shortTitle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CardTitle", "ofType": null }, "isDeprecated": false, @@ -47395,13 +47280,9 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -47418,9 +47299,21 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", - "description": "The ID of this Notification", + "description": "The ID of this Card", "args": [], "type": { "kind": "SCALAR", @@ -47438,7 +47331,46 @@ }, { "kind": "OBJECT", - "name": "NotificationAction", + "name": "CardActionGroup", + "description": null, + "fields": [ + { + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardAction", "description": null, "fields": [ { @@ -47453,6 +47385,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "confirm", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CardActionConfirmation", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "parameterName", "description": null, @@ -47474,7 +47418,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", + "name": "CardActionParameterOptionGroup", "ofType": null } }, @@ -47490,7 +47434,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationActionParameterOption", + "name": "CardActionParameterOption", "ofType": null } }, @@ -47506,7 +47450,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationActionParameter", + "name": "CardActionParameter", "ofType": null } }, @@ -47569,7 +47513,66 @@ }, { "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", + "name": "CardActionConfirmation", + "description": null, + "fields": [ + { + "name": "body", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dismiss", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ok", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "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": [ { @@ -47593,7 +47596,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "NotificationActionParameterOption", + "name": "CardActionParameterOption", "ofType": null } }, @@ -47608,7 +47611,7 @@ }, { "kind": "OBJECT", - "name": "NotificationActionParameterOption", + "name": "CardActionParameterOption", "description": null, "fields": [ { @@ -47643,7 +47646,7 @@ }, { "kind": "OBJECT", - "name": "NotificationActionParameter", + "name": "CardActionParameter", "description": null, "fields": [ { @@ -47678,61 +47681,82 @@ }, { "kind": "OBJECT", - "name": "NotificationRecipient", + "name": "CardBody", "description": null, "fields": [ { - "name": "address", + "name": "avatar", "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": "ENUM", - "name": "AspectRegistrationState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "Disabled", + "name": "hint", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Enabled", + "name": "login", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "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, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AspectRegistration", + "name": "CardCollaborator", "description": null, "fields": [ { - "name": "category", + "name": "avatar", "description": null, "args": [], "type": { @@ -47744,7 +47768,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "link", "description": null, "args": [], "type": { @@ -47756,7 +47780,7 @@ "deprecationReason": null }, { - "name": "displayName", + "name": "login", "description": null, "args": [], "type": { @@ -47766,9 +47790,36 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardCorrelation", + "description": null, + "fields": [ + { + "name": "body", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CorrelationBody", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "endpoint", + "name": "icon", "description": null, "args": [], "type": { @@ -47780,19 +47831,19 @@ "deprecationReason": null }, { - "name": "manageable", + "name": "link", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "shortTitle", "description": null, "args": [], "type": { @@ -47804,7 +47855,7 @@ "deprecationReason": null }, { - "name": "owner", + "name": "title", "description": null, "args": [], "type": { @@ -47816,31 +47867,54 @@ "deprecationReason": null }, { - "name": "shortName", + "name": "ts", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", + "name": "type", "description": null, "args": [], "type": { - "kind": "ENUM", - "name": "AspectRegistrationState", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CorrelationBody", + "description": null, + "fields": [ + { + "name": "icon", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unit", + "name": "text", "description": null, "args": [], "type": { @@ -47850,9 +47924,52 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardEvent", + "description": null, + "fields": [ + { + "name": "actionGroups", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", "description": null, "args": [], "type": { @@ -47864,7 +47981,7 @@ "deprecationReason": null }, { - "name": "uuid", + "name": "text", "description": null, "args": [], "type": { @@ -47876,12 +47993,12 @@ "deprecationReason": null }, { - "name": "id", - "description": "The ID of this AspectRegistration", + "name": "ts", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -47895,255 +48012,71 @@ }, { "kind": "OBJECT", - "name": "Mutation", + "name": "CardSdmGoalSet", "description": null, "fields": [ { - "name": "archiveSkill", - "description": "", - "args": [ - { - "name": "name", - "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 - } - ], + "name": "actions", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistSkills", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disableSkill", - "description": "", - "args": [ - { - "name": "name", - "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 + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "AtomistSkills", - "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableSkill", - "description": "", - "args": [ - { - "name": "name", - "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 - } - ], + "name": "duration", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistSkills", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "registerSkill", - "description": "", - "args": [ - { - "name": "skill", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillInput", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "goalSet", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistTeamSkill", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "shareSkill", - "description": "", - "args": [ - { - "name": "name", - "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 - } - ], + "name": "goalSetId", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistSharedSkill", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": 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 - } - ], + "name": "goals", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "TeamConfiguration", + "name": "CardSdmGoal", "ofType": null } }, @@ -48151,149 +48084,62 @@ "deprecationReason": 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 - } - ], + "name": "registration", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "TeamConfiguration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "disableRegistration", - "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistRegistration", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enableRegistration", - "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "ts", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistRegistration", + "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 - } - ], + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardSdmGoal", + "description": null, + "fields": [ + { + "name": "actions", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "CardAction", "ofType": null } }, @@ -48301,652 +48147,262 @@ "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 - } - ], + "name": "description", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericResourceProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createKubernetesClusterProvider", - "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 - } - ], + "name": "environment", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "kind": "SCALAR", + "name": "String", "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 - } - ], + "name": "link", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "BinaryRepositoryProvider", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": 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 - } - ], + "name": "logLink", + "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": "createGitHubComAppResourceProvider", - "description": "", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "name", + "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": "createGitHubResourceProvider", - "description": "Creates SCMProvider for github.com with a bunch of defaults", + "name": "state", + "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "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": "ts", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "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": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardReaction", + "description": null, + "fields": [ + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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 - } - ], + "name": "login", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": 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 - } - ], + "name": "reaction", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardRepository", + "description": null, + "fields": [ { - "name": "deleteResourceProvider", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "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": "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 - } - ], + "name": "owner", + "description": 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": "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 - } - ], + "name": "slug", + "description": 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 - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardTitle", + "description": null, + "fields": [ { - "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 - } - ], + "name": "icon", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GitHubAppInstallation", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": 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 - } - ], + "name": "text", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Notification", + "description": null, + "fields": [ + { + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppInstallation", + "name": "NotificationAction", "ofType": null } }, @@ -48954,24 +48410,9 @@ "deprecationReason": null }, { - "name": "disconnectGitHubAppOrg", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "body", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -48985,24 +48426,9 @@ "deprecationReason": null }, { - "name": "deleteOrg", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "contentType", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -49016,24 +48442,9 @@ "deprecationReason": null }, { - "name": "deleteRepo", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "correlationId", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -49047,8 +48458,8 @@ "deprecationReason": null }, { - "name": "deleteAllFingerprints", - "description": "", + "name": "key", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -49063,14 +48474,26 @@ "deprecationReason": null }, { - "name": "deleteAspectFingerprints", - "description": "", + "name": "post", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "recipient", + "description": null, "args": [ { - "name": "featureName", - "description": "", + "name": "address", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -49081,12 +48504,24 @@ "defaultValue": null } ], + "type": { + "kind": "OBJECT", + "name": "NotificationRecipient", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ts", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -49094,30 +48529,74 @@ "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": "ttl", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this Notification", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotificationAction", + "description": null, + "fields": [ + { + "name": "command", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "Webhook", + "name": "NotificationActionParameterOptionGroup", "ofType": null } }, @@ -49125,30 +48604,31 @@ "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": "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": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "NotificationActionParameter", "ofType": null } }, @@ -49156,32 +48636,403 @@ "deprecationReason": null }, { - "name": "updateWebhook", - "description": "associate some state with a webhook to help convergence etc", + "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, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "NotificationActionParameterOptionGroup", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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 + }, + "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": "NotificationActionParameter", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "NotificationRecipient", + "description": null, + "fields": [ + { + "name": "address", + "description": 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": "ENUM", + "name": "AspectRegistrationState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Disabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Enabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AspectRegistration", + "description": null, + "fields": [ + { + "name": "category", + "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": "displayName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "endpoint", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manageable", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shortName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "AspectRegistrationState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uuid", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this AspectRegistration", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "registerSkill", + "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhook", + "name": "skill", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WebhookInput", + "name": "AtomistSkillInput", "ofType": null } }, @@ -49189,23 +49040,19 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkill", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addWebhookTag", - "description": "add (or overwrite) a tag on a webhook", + "name": "removeSkillConfiguration", + "description": "", "args": [ { - "name": "id", + "name": "configurationName", "description": "", "type": { "kind": "NON_NULL", @@ -49233,7 +49080,21 @@ "defaultValue": null }, { - "name": "value", + "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", @@ -49248,30 +49109,26 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkills", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setWebhookTags", + "name": "saveSkillConfiguration", "description": "", "args": [ { - "name": "id", + "name": "configuration", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillConfigurationInput", "ofType": null } }, @@ -49292,7 +49149,7 @@ "defaultValue": null }, { - "name": "value", + "name": "namespace", "description": "", "type": { "kind": "NON_NULL", @@ -49304,26 +49161,19 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeChatTeam", - "description": "Removes a ChatTeam and associated nodes from the graph", - "args": [ + }, { - "name": "chatTeamId", + "name": "oldName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", "description": "", "type": { "kind": "NON_NULL", @@ -49338,23 +49188,19 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkills", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createResourceUser", - "description": "### Users ####", + "name": "shareSkill", + "description": "", "args": [ { - "name": "login", + "name": "name", "description": "", "type": { "kind": "NON_NULL", @@ -49368,89 +49214,131 @@ "defaultValue": null }, { - "name": "resourceProviderId", + "name": "namespace", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "resourceUserType", + "name": "teamIds", "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ResourceUserType", - "ofType": null - } - }, - "defaultValue": null - } - ], + "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": "INTERFACE", - "name": "ResourceUser", + "kind": "OBJECT", + "name": "AtomistSkill", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkResourceUser", - "description": "", + "name": "setTeamConfiguration", + "description": "# Team/Workspace configuration ##", "args": [ { - "name": "resourceUserId", + "name": "name", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "personId", + "name": "value", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "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": "INTERFACE", - "name": "ResourceUser", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMOrgs", - "description": "### RCCA SCM Ingestion Mutations ####", + "name": "deleteTeamConfiguration", + "description": "", "args": [ { - "name": "scmProviderId", + "name": "namespace", "description": "", "type": { "kind": "NON_NULL", @@ -49464,14 +49352,14 @@ "defaultValue": null }, { - "name": "scmOrgsInput", + "name": "name", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMOrgsInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -49479,27 +49367,19 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Org", - "ofType": null - } - } + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMRepos", + "name": "disableRegistration", "description": "", "args": [ { - "name": "scmProviderId", + "name": "name", "description": "", "type": { "kind": "NON_NULL", @@ -49511,16 +49391,29 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistRegistration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enableRegistration", + "description": "", + "args": [ { - "name": "scmReposInput", + "name": "name", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMReposInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -49528,52 +49421,54 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - } - } + "kind": "OBJECT", + "name": "AtomistRegistration", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestSCMCommit", - "description": "", + "name": "createDockerRegistryProvider", + "description": "Creates a new docker registry provider", "args": [ { - "name": "scmProviderId", + "name": "type", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DockerRegistryType", "ofType": null } }, "defaultValue": null }, { - "name": "scmCommitInput", + "name": "name", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMCommitInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -49581,7 +49476,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -49589,42 +49484,40 @@ "deprecationReason": null }, { - "name": "deleteFingerprints", - "description": "Delete all fingerprints for this team matching supplied query", + "name": "createGenericResourceProvider", + "description": "", "args": [ { - "name": "branchId", - "description": "Restrict to this particular branch in repo", + "name": "type", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "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", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", - "description": "Restrict to this particular type", + "name": "url", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -49637,8 +49530,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "GenericResourceProvider", "ofType": null } }, @@ -49646,29 +49539,48 @@ "deprecationReason": null }, { - "name": "setCommitFingerprints", - "description": "Set the fingerprints of a commit", + "name": "createKubernetesClusterProvider", + "description": "", "args": [ { - "name": "add", - "description": "List of new fingerprints added by this commit", + "name": "name", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FingerprintInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null }, { - "name": "branchId", + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createBinaryRepositoryProvider", + "description": "", + "args": [ + { + "name": "name", "description": "", "type": { "kind": "NON_NULL", @@ -49682,50 +49594,83 @@ "defaultValue": null }, { - "name": "commitSha", - "description": "The sha of the the commit", + "name": "type", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BinaryRepositoryType", "ofType": null } }, "defaultValue": null }, { - "name": "isDefaultBranch", + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGHEAppResourceProvider", + "description": "", + "args": [ + { + "name": "name", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "isHeadCommit", + "name": "url", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "repoId", - "description": "Id of the repo in the graph", + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -49738,8 +49683,8 @@ "defaultValue": null }, { - "name": "type", - "description": "The type of this fingerprint e.g. package.json-deps", + "name": "gitUrl", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -49750,105 +49695,75 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setFingerprintTarget", - "description": "", - "args": [ + }, { - "name": "target", + "name": "private", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FingerprintTargetInput", + "kind": "SCALAR", + "name": "Boolean", "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", + "name": "applicationId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "jobTasks", - "description": "The tasks for the job", + "name": "applicationName", + "description": "", "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": "String", + "ofType": null } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createAtmJob", - "description": "Create a new AtmJob", + "name": "createGitHubComAppResourceProvider", + "description": "", "args": [ { - "name": "jobInput", - "description": "The AtmJobInput for the AtmJob you are creating", + "name": "name", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmJobInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -49856,47 +49771,40 @@ } ], "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "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 - } - ], + "name": "createGitHubResourceProvider", + "description": "Creates SCMProvider for github.com with a bunch of defaults", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setAtmJobTaskState", - "description": "Set the state on a AtmJobTask", + "name": "configureGitHubResourceProvider", + "description": "configure repos/orgs - raise system event for SCMProvider", "args": [ { "name": "id", - "description": "The id of the AtmJobTask to set the state of", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -49909,14 +49817,14 @@ "defaultValue": null }, { - "name": "jobTaskState", - "description": "The state to set", + "name": "config", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AtmJobTaskStateInput", + "name": "SCMResourceProviderInput", "ofType": null } }, @@ -49924,123 +49832,171 @@ } ], "type": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "takeTasks", - "description": "Take tasks to work on", + "name": "setResourceProviderState", + "description": "", "args": [ { - "name": "taskRequest", - "description": "The request for tasks", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtmTaskRequest", + "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": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null - } + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkSlackChannelToRepo", + "name": "setSCMProviderState", "description": "", "args": [ { - "name": "channelId", + "name": "id", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "channelName", + "name": "providerState", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", "ofType": null }, "defaultValue": null - }, - { - "name": "chatTeamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "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": "owner", + "name": "providerId", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "providerId", + "name": "resourceUserId", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "repo", + "name": "credential", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CredentialInput", "ofType": null } }, @@ -50048,78 +50004,120 @@ } ], "type": { - "kind": "OBJECT", - "name": "ChannelLinked", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unlinkSlackChannelFromRepo", + "name": "linkCredentialToResourceProvider", "description": "", "args": [ { - "name": "channelId", + "name": "resourceProviderId", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "chatTeamId", + "name": "credentialId", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkGitHubAppInstallation", + "description": "Links a GitHubAppInstallation to the provider as an Org", + "args": [ { - "name": "owner", + "name": "id", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGitHubAppInstallation", + "description": "", + "args": [ { - "name": "providerId", + "name": "resourceProviderId", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "repo", + "name": "installationId", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -50127,26 +50125,30 @@ } ], "type": { - "kind": "OBJECT", - "name": "ChannelLinked", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomCommitIssueRelationship", - "description": "Auto-generated ingestion mutation for CommitIssueRelationship", + "name": "disconnectGitHubAppOrg", + "description": "", "args": [ { - "name": "value", - "description": "The instance of CommitIssueRelationship to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50154,26 +50156,30 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomDeployment", - "description": "Auto-generated ingestion mutation for Deployment", + "name": "deleteOrg", + "description": "", "args": [ { - "name": "value", - "description": "The instance of Deployment to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50181,26 +50187,30 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomIssueRelationship", - "description": "Auto-generated ingestion mutation for IssueRelationship", + "name": "deleteRepo", + "description": "", "args": [ { - "name": "value", - "description": "The instance of IssueRelationship to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50208,26 +50218,46 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoal", - "description": "Auto-generated ingestion mutation for SdmGoal", + "name": "deleteAllFingerprints", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteAspectFingerprints", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmGoal to ingest", + "name": "featureName", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50235,26 +50265,30 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoalSet", - "description": "Auto-generated ingestion mutation for SdmGoalSet", + "name": "createWebhook", + "description": "create and expose a webhook over the public internet", "args": [ { - "name": "value", - "description": "The instance of SdmGoalSet to ingest", + "name": "webhook", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", + "name": "WebhookInput", "ofType": null } }, @@ -50262,26 +50296,30 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmGoalDisplay", - "description": "Auto-generated ingestion mutation for SdmGoalDisplay", + "name": "deleteWebhook", + "description": "delete a webhook from public internet", "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", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50289,53 +50327,44 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmBuildIdentifier", - "description": "Auto-generated ingestion mutation for SdmBuildIdentifier", + "name": "updateWebhook", + "description": "associate some state with a webhook to help convergence etc", "args": [ { - "name": "value", - "description": "The instance of SdmBuildIdentifier to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", + "kind": "SCALAR", + "name": "ID", "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", + "name": "webhook", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", + "name": "WebhookInput", "ofType": null } }, @@ -50343,80 +50372,58 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmVersion", - "description": "Auto-generated ingestion mutation for SdmVersion", + "name": "addWebhookTag", + "description": "add (or overwrite) a tag on a webhook", "args": [ { - "name": "value", - "description": "The instance of SdmVersion to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionInput", + "kind": "SCALAR", + "name": "ID", "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", + "name": "name", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", + "kind": "SCALAR", + "name": "String", "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", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmPreferenceInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50424,80 +50431,58 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomSdmRepoProvenance", - "description": "Auto-generated ingestion mutation for SdmRepoProvenance", + "name": "setWebhookTags", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmRepoProvenance to ingest", + "name": "id", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepoProvenanceInput", + "kind": "SCALAR", + "name": "ID", "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", + "name": "name", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", + "kind": "SCALAR", + "name": "String", "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", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50505,26 +50490,30 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomPolicyTargetStream", - "description": "Auto-generated ingestion mutation for PolicyTargetStream", + "name": "removeChatTeam", + "description": "Removes a ChatTeam and associated nodes from the graph", "args": [ { - "name": "value", - "description": "The instance of PolicyTargetStream to ingest", + "name": "chatTeamId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetStreamInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50532,80 +50521,58 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomPolicyTarget", - "description": "Auto-generated ingestion mutation for PolicyTarget", + "name": "createResourceUser", + "description": "### Users ####", "args": [ { - "name": "value", - "description": "The instance of PolicyTarget to ingest", + "name": "login", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "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", + "name": "resourceProviderId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardInput", + "kind": "SCALAR", + "name": "ID", "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", + "name": "resourceUserType", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", + "kind": "ENUM", + "name": "ResourceUserType", "ofType": null } }, @@ -50613,53 +50580,40 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "ResourceUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ingestCustomAspectRegistration", - "description": "Auto-generated ingestion mutation for AspectRegistration", + "name": "linkResourceUser", + "description": "", "args": [ { - "name": "value", - "description": "The instance of AspectRegistration to ingest", + "name": "resourceUserId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomAspectRegistrationInput", + "kind": "SCALAR", + "name": "ID", "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", + "name": "personId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -50667,53 +50621,40 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "ResourceUser", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomDeployment", - "description": "Auto-generated deletion mutation for Deployment", + "name": "ingestSCMOrgs", + "description": "### RCCA SCM Ingestion Mutations ####", "args": [ { - "name": "value", - "description": "The instance of Deployment to delete", + "name": "scmProviderId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "scmOrgsInput", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", + "name": "SCMOrgsInput", "ofType": null } }, @@ -50721,53 +50662,48 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoal", - "description": "Auto-generated deletion mutation for SdmGoal", + "name": "ingestSCMRepos", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmGoal to delete", + "name": "scmProviderId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "scmReposInput", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", + "name": "SCMReposInput", "ofType": null } }, @@ -50775,53 +50711,48 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalDisplay", - "description": "Auto-generated deletion mutation for SdmGoalDisplay", + "name": "ingestSCMCommit", + "description": "", "args": [ { - "name": "value", - "description": "The instance of SdmGoalDisplay to delete", + "name": "scmProviderId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDisplayInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "scmCommitInput", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", + "name": "SCMCommitInput", "ofType": null } }, @@ -50829,188 +50760,175 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmDeployEnablement", - "description": "Auto-generated deletion mutation for SdmDeployEnablement", + "name": "deleteFingerprints", + "description": "Delete all fingerprints for this team matching supplied query", "args": [ { - "name": "value", - "description": "The instance of SdmDeployEnablement to delete", + "name": "branchId", + "description": "Restrict to this particular branch in repo", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", - "ofType": null - } + "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmVersion", - "description": "Auto-generated deletion mutation for SdmVersion", + "name": "setCommitFingerprints", + "description": "Set the fingerprints of a commit", "args": [ { - "name": "value", - "description": "The instance of SdmVersion to delete", + "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": "INPUT_OBJECT", - "name": "CustomSdmVersionInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "commitSha", + "description": "The sha of the the commit", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "isDefaultBranch", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmPreferenceInput", + "kind": "SCALAR", + "name": "Boolean", "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", + "name": "isHeadCommit", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepoProvenanceInput", + "kind": "SCALAR", + "name": "Boolean", "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", + "name": "repoId", + "description": "Id of the repo in the graph", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", + "kind": "SCALAR", + "name": "String", "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", + "name": "type", + "description": "The type of this fingerprint e.g. package.json-deps", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51026,18 +50944,18 @@ "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetStream", - "description": "Auto-generated deletion mutation for PolicyTargetStream", + "name": "setFingerprintTarget", + "description": "", "args": [ { - "name": "value", - "description": "The instance of PolicyTargetStream to delete", + "name": "target", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetStreamInput", + "name": "FingerprintTargetInput", "ofType": null } }, @@ -51045,53 +50963,75 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintTarget", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomPolicyTarget", - "description": "Auto-generated deletion mutation for PolicyTarget", + "name": "addAtmJobTasks", + "description": "Add tasks to existing job, provided the job is in a preparing state.", "args": [ { - "name": "value", - "description": "The instance of PolicyTarget to delete", + "name": "jobId", + "description": "The id of the job", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtmJob", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomCard", - "description": "Auto-generated deletion mutation for Card", + "name": "createAtmJob", + "description": "Create a new AtmJob", "args": [ { - "name": "value", - "description": "The instance of Card to delete", + "name": "jobInput", + "description": "The AtmJobInput for the AtmJob you are creating", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomCardInput", + "name": "AtmJobInput", "ofType": null } }, @@ -51099,26 +51039,26 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtmJob", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomNotification", - "description": "Auto-generated deletion mutation for Notification", + "name": "resumeAtmJob", + "description": "Re-trigger tasks for a job that have not completed", "args": [ { - "name": "value", - "description": "The instance of Notification to delete", + "name": "jobId", + "description": "The id of the job", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51126,26 +51066,40 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtmJob", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomAspectRegistration", - "description": "Auto-generated deletion mutation for AspectRegistration", + "name": "setAtmJobTaskState", + "description": "Set the state on a AtmJobTask", "args": [ { - "name": "value", - "description": "The instance of AspectRegistration to delete", + "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": "CustomAspectRegistrationInput", + "name": "AtmJobTaskStateInput", "ofType": null } }, @@ -51153,26 +51107,26 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "AtmJobTask", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomCommitIssueRelationshipById", - "description": "Auto-generated delete-by-id mutation for CommitIssueRelationship", + "name": "takeTasks", + "description": "Take tasks to work on", "args": [ { - "name": "id", - "description": "The id of the CommitIssueRelationship to delete", + "name": "taskRequest", + "description": "The request for tasks", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "AtmTaskRequest", "ofType": null } }, @@ -51180,26 +51134,96 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomDeploymentById", - "description": "Auto-generated delete-by-id mutation for Deployment", + "name": "linkSlackChannelToRepo", + "description": "", "args": [ { - "name": "id", - "description": "The id of the Deployment to delete", + "name": "channelId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "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 } }, @@ -51207,26 +51231,78 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChannelLinked", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomIssueRelationshipById", - "description": "Auto-generated delete-by-id mutation for IssueRelationship", + "name": "unlinkSlackChannelFromRepo", + "description": "", "args": [ { - "name": "id", - "description": "The id of the IssueRelationship to delete", + "name": "channelId", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "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 } }, @@ -51234,26 +51310,26 @@ } ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChannelLinked", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteCustomSdmGoalById", - "description": "Auto-generated delete-by-id mutation for SdmGoal", + "name": "ingestCustomCommitIssueRelationship", + "description": "Auto-generated ingestion mutation for CommitIssueRelationship", "args": [ { - "name": "id", - "description": "The id of the SdmGoal to delete", + "name": "value", + "description": "The instance of CommitIssueRelationship to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", "ofType": null } }, @@ -51269,18 +51345,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSetById", - "description": "Auto-generated delete-by-id mutation for SdmGoalSet", + "name": "ingestCustomDeployment", + "description": "Auto-generated ingestion mutation for Deployment", "args": [ { - "name": "id", - "description": "The id of the SdmGoalSet to delete", + "name": "value", + "description": "The instance of Deployment to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", "ofType": null } }, @@ -51296,18 +51372,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmGoalDisplayById", - "description": "Auto-generated delete-by-id mutation for SdmGoalDisplay", + "name": "ingestCustomIssueRelationship", + "description": "Auto-generated ingestion mutation for IssueRelationship", "args": [ { - "name": "id", - "description": "The id of the SdmGoalDisplay to delete", + "name": "value", + "description": "The instance of IssueRelationship to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", "ofType": null } }, @@ -51323,18 +51399,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmBuildIdentifierById", - "description": "Auto-generated delete-by-id mutation for SdmBuildIdentifier", + "name": "ingestCustomSdmGoal", + "description": "Auto-generated ingestion mutation for SdmGoal", "args": [ { - "name": "id", - "description": "The id of the SdmBuildIdentifier to delete", + "name": "value", + "description": "The instance of SdmGoal to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", "ofType": null } }, @@ -51350,18 +51426,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmDeployEnablementById", - "description": "Auto-generated delete-by-id mutation for SdmDeployEnablement", + "name": "ingestCustomSdmGoalSet", + "description": "Auto-generated ingestion mutation for SdmGoalSet", "args": [ { - "name": "id", - "description": "The id of the SdmDeployEnablement to delete", + "name": "value", + "description": "The instance of SdmGoalSet to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", "ofType": null } }, @@ -51377,18 +51453,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmVersionById", - "description": "Auto-generated delete-by-id mutation for SdmVersion", + "name": "ingestCustomSdmGoalDisplay", + "description": "Auto-generated ingestion mutation for SdmGoalDisplay", "args": [ { - "name": "id", - "description": "The id of the SdmVersion to delete", + "name": "value", + "description": "The instance of SdmGoalDisplay to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", "ofType": null } }, @@ -51404,18 +51480,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmGoalSetBadgeById", - "description": "Auto-generated delete-by-id mutation for SdmGoalSetBadge", + "name": "ingestCustomSdmBuildIdentifier", + "description": "Auto-generated ingestion mutation for SdmBuildIdentifier", "args": [ { - "name": "id", - "description": "The id of the SdmGoalSetBadge to delete", + "name": "value", + "description": "The instance of SdmBuildIdentifier to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", "ofType": null } }, @@ -51431,18 +51507,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmPreferenceById", - "description": "Auto-generated delete-by-id mutation for SdmPreference", + "name": "ingestCustomSdmDeployEnablement", + "description": "Auto-generated ingestion mutation for SdmDeployEnablement", "args": [ { - "name": "id", - "description": "The id of the SdmPreference to delete", + "name": "value", + "description": "The instance of SdmDeployEnablement to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", "ofType": null } }, @@ -51458,18 +51534,18 @@ "deprecationReason": null }, { - "name": "deleteCustomSdmRepoProvenanceById", - "description": "Auto-generated delete-by-id mutation for SdmRepoProvenance", + "name": "ingestCustomSdmVersion", + "description": "Auto-generated ingestion mutation for SdmVersion", "args": [ { - "name": "id", - "description": "The id of the SdmRepoProvenance to delete", + "name": "value", + "description": "The instance of SdmVersion to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", "ofType": null } }, @@ -51485,18 +51561,18 @@ "deprecationReason": null }, { - "name": "deleteCustomPolicyLogById", - "description": "Auto-generated delete-by-id mutation for PolicyLog", + "name": "ingestCustomSdmGoalSetBadge", + "description": "Auto-generated ingestion mutation for SdmGoalSetBadge", "args": [ { - "name": "id", - "description": "The id of the PolicyLog to delete", + "name": "value", + "description": "The instance of SdmGoalSetBadge to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", "ofType": null } }, @@ -51512,18 +51588,18 @@ "deprecationReason": null }, { - "name": "deleteCustomPolicyComplianceById", - "description": "Auto-generated delete-by-id mutation for PolicyCompliance", + "name": "ingestCustomSdmPreference", + "description": "Auto-generated ingestion mutation for SdmPreference", "args": [ { - "name": "id", - "description": "The id of the PolicyCompliance to delete", + "name": "value", + "description": "The instance of SdmPreference to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", "ofType": null } }, @@ -51539,18 +51615,18 @@ "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetStreamById", - "description": "Auto-generated delete-by-id mutation for PolicyTargetStream", + "name": "ingestCustomSdmRepoProvenance", + "description": "Auto-generated ingestion mutation for SdmRepoProvenance", "args": [ { - "name": "id", - "description": "The id of the PolicyTargetStream to delete", + "name": "value", + "description": "The instance of SdmRepoProvenance to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", "ofType": null } }, @@ -51566,18 +51642,18 @@ "deprecationReason": null }, { - "name": "deleteCustomPolicyTargetById", - "description": "Auto-generated delete-by-id mutation for PolicyTarget", + "name": "ingestCustomPolicyLog", + "description": "Auto-generated ingestion mutation for PolicyLog", "args": [ { - "name": "id", - "description": "The id of the PolicyTarget to delete", + "name": "value", + "description": "The instance of PolicyLog to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", "ofType": null } }, @@ -51593,18 +51669,18 @@ "deprecationReason": null }, { - "name": "deleteCustomCardById", - "description": "Auto-generated delete-by-id mutation for Card", + "name": "ingestCustomPolicyCompliance", + "description": "Auto-generated ingestion mutation for PolicyCompliance", "args": [ { - "name": "id", - "description": "The id of the Card to delete", + "name": "value", + "description": "The instance of PolicyCompliance to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", "ofType": null } }, @@ -51620,18 +51696,18 @@ "deprecationReason": null }, { - "name": "deleteCustomNotificationById", - "description": "Auto-generated delete-by-id mutation for Notification", + "name": "ingestCustomPolicyTargetStream", + "description": "Auto-generated ingestion mutation for PolicyTargetStream", "args": [ { - "name": "id", - "description": "The id of the Notification to delete", + "name": "value", + "description": "The instance of PolicyTargetStream to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", "ofType": null } }, @@ -51647,18 +51723,18 @@ "deprecationReason": null }, { - "name": "deleteCustomAspectRegistrationById", - "description": "Auto-generated delete-by-id mutation for AspectRegistration", + "name": "ingestCustomPolicyTarget", + "description": "Auto-generated ingestion mutation for PolicyTarget", "args": [ { - "name": "id", - "description": "The id of the AspectRegistration to delete", + "name": "value", + "description": "The instance of PolicyTarget to ingest", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", "ofType": null } }, @@ -51674,1193 +51750,1620 @@ "deprecationReason": null }, { - "name": "setChatUserPreference", - "description": "Set the value of a user preference.", + "name": "ingestCustomSkillOutput", + "description": "Auto-generated ingestion mutation for SkillOutput", "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", + "description": "The instance of SkillOutput to ingest", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSkillOutputInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserPreference", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setChatTeamPreference", - "description": "Set the value of a chat team preference. Returns what was set", + "name": "ingestCustomCard", + "description": "Auto-generated ingestion mutation for Card", "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", + "name": "value", + "description": "The instance of Card to ingest", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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 value of the preference", + "description": "The instance of Notification to ingest", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamPreference", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createSlackChannel", - "description": "Create a slack channel in the current team", + "name": "ingestCustomAspectRegistration", + "description": "Auto-generated ingestion mutation for AspectRegistration", "args": [ { - "name": "chatTeamId", - "description": "The ID of the chat team", + "name": "value", + "description": "The instance of AspectRegistration to ingest", "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 + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addBotToSlackChannel", - "description": "Ask the bot to join a chat channel", + "name": "deleteCustomCommitIssueRelationship", + "description": "Auto-generated deletion mutation for CommitIssueRelationship", "args": [ { - "name": "chatTeamId", - "description": "The ID of the chat team", + "name": "value", + "description": "The instance of CommitIssueRelationship to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "channelId", - "description": "The id of the channel to join", + "name": "value", + "description": "The instance of Deployment to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "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", + "name": "deleteCustomIssueRelationship", + "description": "Auto-generated deletion mutation for IssueRelationship", "args": [ { - "name": "chatTeamId", - "description": "The ID of the chat team", + "name": "value", + "description": "The instance of IssueRelationship to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "channelId", - "description": "The id of the channel to join", + "name": "value", + "description": "The instance of SdmGoal to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "userId", - "description": "The id of the user to invite", + "name": "value", + "description": "The instance of SdmGoalSet to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "kickUserFromSlackChannel", - "description": "Ask the bot to kick a user from a chat channel", + "name": "deleteCustomSdmGoalDisplay", + "description": "Auto-generated deletion mutation for SdmGoalDisplay", "args": [ { - "name": "chatTeamId", - "description": "The ID of the chat team", + "name": "value", + "description": "The instance of SdmGoalDisplay to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "channelId", - "description": "The id of the channel", + "name": "value", + "description": "The instance of SdmBuildIdentifier to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "userId", - "description": "The id of the user", + "name": "value", + "description": "The instance of SdmDeployEnablement to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setOwnerLogin", - "description": "set a GitHub login to be used for resources owned by an Org", + "name": "deleteCustomSdmVersion", + "description": "Auto-generated deletion mutation for SdmVersion", "args": [ { - "name": "owner", - "description": "The owner name for the Organization/Team", + "name": "value", + "description": "The instance of SdmVersion to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "providerId", - "description": "The id of the Git provider for this Owner", + "name": "value", + "description": "The instance of SdmGoalSetBadge to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "login", - "description": "The login that should be used", + "name": "value", + "description": "The instance of SdmPreference to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "OwnerLogin", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setRepoLogin", - "description": "set a GitHub login to be used for this Repository", + "name": "deleteCustomSdmRepoProvenance", + "description": "Auto-generated deletion mutation for SdmRepoProvenance", "args": [ { - "name": "repo", - "description": "The owner name for the Organization/Team", + "name": "value", + "description": "The instance of SdmRepoProvenance to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "owner", - "description": "The owner name for the Organization/Team", + "name": "value", + "description": "The instance of PolicyLog to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "providerId", - "description": "The id of the Git provider for this Owner", + "name": "value", + "description": "The instance of PolicyCompliance to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "login", - "description": "The login that should be used", + "name": "value", + "description": "The instance of PolicyTargetStream to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "RepoLogin", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setTeamProperties", - "description": "Set a team's properties", + "name": "deleteCustomPolicyTarget", + "description": "Auto-generated deletion mutation for PolicyTarget", "args": [ { - "name": "name", - "description": "The display name of the team", + "name": "value", + "description": "The instance of PolicyTarget to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "deleteCustomSkillOutput", + "description": "Auto-generated deletion mutation for SkillOutput", + "args": [ { - "name": "description", - "description": "The description of the team", + "name": "value", + "description": "The instance of SkillOutput to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSkillOutputInput", + "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": "iconUrl", - "description": "URL to a teams icon", + "name": "value", + "description": "The instance of Card to delete", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "ofType": null + } }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "String", "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": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistSkillArtifactInput", - "ofType": null - } - }, - "defaultValue": null }, { - "name": "author", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "branchId", - "description": "", + ], "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": "categories", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillCategory", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "commands", - "description": "", + ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AtomistChatCommandInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "commitSha", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "description", - "description": "", + ], "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": "displayName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "homepageUrl", - "description": "", + ], "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": "iconUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "ingesters", - "description": "", + ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "license", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "longDescription", - "description": "", + ], "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": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", + ], "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": "subscriptions", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "technologies", - "description": "", + ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillTechnology", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "version", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "defaultValue": 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", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "kind", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillArtifactKind", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "memory", - "description": "", + ], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "runtime", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AtomistSkillRuntime", - "ofType": 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 } - }, - "defaultValue": null - }, - { - "name": "timeout", - "description": "", + ], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 }, - "defaultValue": null - } - ], - "interfaces": null, - "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": "", + "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": "go113", - "description": "", - "isDeprecated": false, - "deprecationReason": 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 + "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 } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", + ], "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": "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": "SCMResourceProviderInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "orgs", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "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": "String", + "name": "ID", "ofType": null } - } + }, + "defaultValue": null } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repos", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { + "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": "INPUT_OBJECT", - "name": "SCMResourceProviderRepoInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } - } + }, + "defaultValue": 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 - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": 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 } - }, - "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 - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "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 }, - "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 + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "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 + } + ], "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": "", + "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": "misconfigured", - "description": "", + "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": "unauthorized", - "description": "", - "isDeprecated": false, - "deprecationReason": 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 + "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 } - }, - "defaultValue": null - }, - { - "name": "oauth", - "description": "", + ], "type": { - "kind": "INPUT_OBJECT", - "name": "OAuthInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": 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": "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": "OAuthToken", - "description": "", + "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": "Password", - "description": "", + "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": "OAuthInput", - "description": "", + "name": "AtomistSkillInput", + "description": "Start: registration inputs", "fields": null, "inputFields": [ { - "name": "secret", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "scopes", + "name": "artifacts", "description": "", "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": "INPUT_OBJECT", + "name": "AtomistSkillArtifactInput", + "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PasswordInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "secret", + "name": "author", "description": "", "type": { "kind": "NON_NULL", @@ -52872,20 +53375,9 @@ } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "branchId", "description": "", "type": { "kind": "NON_NULL", @@ -52899,115 +53391,91 @@ "defaultValue": null }, { - "name": "resourceProviderId", + "name": "categories", "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtomistSkillCategory", + "ofType": null + } } }, "defaultValue": null }, { - "name": "authType", + "name": "commands", "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistChatCommandInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "hmacSha1", + "name": "commitSha", "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "HmacSha1AuthInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "tags", + "name": "description", "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "state", + "name": "dispatchStyle", "description": "", "type": { "kind": "ENUM", - "name": "WebhookState", + "name": "AtomistSkillEventDispatchStyle", "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", + "name": "displayName", + "description": "", "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", + "name": "homepageUrl", "description": "", "type": { "kind": "NON_NULL", @@ -53021,7 +53489,7 @@ "defaultValue": null }, { - "name": "value", + "name": "iconUrl", "description": "", "type": { "kind": "NON_NULL", @@ -53033,88 +53501,27 @@ } }, "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": "SCMOrgsInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "orgs", + "name": "ingesters", "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMOrgInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SCMOrgInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "license", "description": "", "type": { "kind": "NON_NULL", @@ -53128,53 +53535,22 @@ "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", + "name": "longDescription", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", "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", + "name": "name", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53187,7 +53563,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "namespace", "description": "", "type": { "kind": "NON_NULL", @@ -53201,41 +53577,36 @@ "defaultValue": null }, { - "name": "repos", - "description": "The list of repos to ingest", + "name": "parameters", + "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMRepoInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterSpecInput", + "ofType": null } } }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SCMRepoInput", - "description": "", - "fields": null, - "inputFields": [ + }, + { + "name": "readme", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "repoId", - "description": "The the id of the repo as provided by the SCM provider not the Atomist graph", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53248,18 +53619,44 @@ "defaultValue": null }, { - "name": "url", - "description": "The http url of the repo in the SCM provider", + "name": "subscriptions", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "name", - "description": "The name of the repo", + "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, @@ -53272,8 +53669,8 @@ "defaultValue": null }, { - "name": "defaultBranch", - "description": "The default branch of the repo (master if unknown)", + "name": "videoUrl", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -53288,13 +53685,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "SCMCommitInput", + "name": "AtomistSkillArtifactInput", "description": "", "fields": null, "inputFields": [ { - "name": "repoId", - "description": "The id of the repo as it appears in the graph", + "name": "entryPoint", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53307,56 +53704,56 @@ "defaultValue": null }, { - "name": "sha", - "description": "The sha of the commit", + "name": "kind", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillArtifactKind", "ofType": null } }, "defaultValue": null }, { - "name": "email", - "description": "The email address of the commit", + "name": "memory", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "EmailInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "message", - "description": "The commit message", + "name": "runtime", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtomistSkillRuntime", "ofType": null } }, "defaultValue": null }, { - "name": "url", - "description": "The http url of the commit in the SCM provider", + "name": "timeout", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", - "description": "The commit timestamp", + "name": "url", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53367,10 +53764,21 @@ } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistChatCommandInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "branchName", - "description": "The name of the branch this commit is being ingested on", + "name": "description", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53383,28 +53791,31 @@ "defaultValue": null }, { - "name": "author", - "description": "The author of the commit - optional but helpful if available", + "name": "displayName", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "SCMAuthorInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EmailInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "address", + "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", @@ -53424,120 +53835,97 @@ }, { "kind": "INPUT_OBJECT", - "name": "SCMAuthorInput", + "name": "AtomistSkillParameterSpecInput", "description": "", "fields": null, "inputFields": [ { - "name": "login", - "description": "The login of the commit author in the SCM provider", + "name": "boolean", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterSpecInput", + "ofType": null }, "defaultValue": null }, { - "name": "email", - "description": "The authors email address", + "name": "float", + "description": "", "type": { "kind": "INPUT_OBJECT", - "name": "EmailInput", + "name": "AtomistSkillFloatParameterSpecInput", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": "The name of the author", + "name": "int", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterSpecInput", "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", + "name": "multiChoice", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterSpecInput", "ofType": null }, "defaultValue": null }, { - "name": "displayName", - "description": "Optional human readable string for this fingerprint", + "name": "repoFilter", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterParameterSpecInput", "ofType": null }, "defaultValue": null }, { - "name": "displayType", - "description": "Optional human readable string for the type (Aspect name) of this fingerprint", + "name": "schedule", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleParameterSpecInput", "ofType": null }, "defaultValue": null }, { - "name": "displayValue", - "description": "Optional human readable string for the value of this fingerprint", + "name": "singleChoice", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterSpecInput", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": "The unique name for this fingerprint, such as the name of a dependency", + "name": "string", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterSpecInput", + "ofType": null }, "defaultValue": null }, { - "name": "sha", - "description": "The hash of this fingerprint - forms ID of a SourceFingerprint", + "name": "stringArray", + "description": "", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterSpecInput", + "ofType": null }, "defaultValue": null } @@ -53548,12 +53936,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "FingerprintTargetInput", + "name": "AtomistSkillBooleanParameterSpecInput", "description": "", "fields": null, "inputFields": [ { - "name": "name", + "name": "defaultValue", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", "description": "", "type": { "kind": "NON_NULL", @@ -53567,7 +53965,17 @@ "defaultValue": null }, { - "name": "sha", + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "NON_NULL", @@ -53581,14 +53989,14 @@ "defaultValue": null }, { - "name": "type", + "name": "required", "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -53601,23 +54009,23 @@ }, { "kind": "INPUT_OBJECT", - "name": "AtmJobTaskInput", - "description": "Input object for creation of AtmJobTask", + "name": "AtomistSkillFloatParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "data", - "description": "Sets additional information about this AtmJobTask", + "name": "defaultValue", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": "Sets the name for this AtmJobTask", + "name": "description", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53628,21 +54036,10 @@ } }, "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", + "name": "displayName", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -53651,50 +54048,67 @@ "defaultValue": null }, { - "name": "description", - "description": "A description for this job.", + "name": "maximum", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "initialState", - "description": "The initial state for the job. The default is running. Another option is preparing.", + "name": "minimum", + "description": "", "type": { - "kind": "ENUM", - "name": "AtmInitialJobState", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "jobTasks", - "description": "The tasks for the job", + "name": "name", + "description": "", "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": "String", + "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.", + "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": "AtomistSkillIntParameterSpecInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "defaultValue", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -53703,8 +54117,8 @@ "defaultValue": null }, { - "name": "name", - "description": "Sets the name for this job", + "name": "description", + "description": "", "type": { "kind": "NON_NULL", "name": null, @@ -53717,68 +54131,58 @@ "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.", + "name": "displayName", + "description": "", "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", + "name": "maximum", "description": "", - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "name": "running", + "name": "minimum", "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", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "state", - "description": "Sets the AtmJobTaskState of this AtmJobState", + "name": "name", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtmJobTaskState", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "required", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -53791,13 +54195,31 @@ }, { "kind": "INPUT_OBJECT", - "name": "AtmTaskRequest", - "description": "The input object for proposing an offer of work", + "name": "AtomistSkillMultiChoiceParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "jobId", - "description": "The id of the job", + "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, @@ -53810,8 +54232,18 @@ "defaultValue": null }, { - "name": "maxTaskCount", - "description": "The maxiumum number of tasks to get. Default is 1.", + "name": "displayName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxRequired", + "description": "", "type": { "kind": "SCALAR", "name": "Int", @@ -53820,42 +54252,56 @@ "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", + "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": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "taskTimeoutUnit", - "description": "The units (seconds, minutes, hours) to use for the taskTimeout", + "name": "options", + "description": "", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "TimeUnit", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "worker", - "description": "Specify a name for the worker that is requesting this work", + "name": "required", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -53867,43 +54313,24 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "TimeUnit", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", "description": "", "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "seconds", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "minutes", + "name": "description", "description": "", - "isDeprecated": false, - "deprecationReason": null + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "name": "hours", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelLinked", - "description": "", - "fields": [ - { - "name": "chatTeamId", + "name": "text", "description": "", - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -53913,13 +54340,11 @@ "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", + "name": "value", "description": "", - "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -53929,48 +54354,68 @@ "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipInput", - "description": "Auto generated input for type CommitIssueRelationship", + "name": "AtomistSkillRepoFilterParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "commit", - "description": null, + "name": "description", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipCommitInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "issue", - "description": null, + "name": "displayName", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipIssueInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null + "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 } @@ -53981,13 +54426,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipCommitInput", - "description": "Auto generated input for type CommitIssueRelationshipCommit", + "name": "AtomistSkillScheduleParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "owner", - "description": null, + "name": "defaultValue", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -53996,24 +54441,56 @@ "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "description", + "description": "", "type": { - "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": "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, @@ -54022,13 +54499,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCommitIssueRelationshipIssueInput", - "description": "Auto generated input for type CommitIssueRelationshipIssue", + "name": "AtomistSkillSingleChoiceParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "defaultValue", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -54037,63 +54514,72 @@ "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "description", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "displayName", + "description": "", "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, + "name": "name", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomDeploymentCommitInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "environment", - "description": null, + "name": "options", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillChoiceInput", + "ofType": null + } + } }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "required", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null } @@ -54104,13 +54590,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomDeploymentCommitInput", - "description": "Auto generated input for type DeploymentCommit", + "name": "AtomistSkillStringParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "owner", - "description": null, + "name": "defaultValue", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -54119,8 +54605,22 @@ "defaultValue": null }, { - "name": "repo", - "description": 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", @@ -54129,14 +54629,42 @@ "defaultValue": null }, { - "name": "sha", - "description": 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 } ], "interfaces": null, @@ -54145,33 +54673,41 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipInput", - "description": "Auto generated input for type IssueRelationship", + "name": "AtomistSkillStringArrayParameterSpecInput", + "description": "", "fields": null, "inputFields": [ { - "name": "relationshipId", - "description": null, + "name": "defaultValue", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "source", - "description": null, + "name": "description", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "displayName", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -54180,24 +54716,62 @@ "defaultValue": null }, { - "name": "target", - "description": null, + "name": "maxAllowed", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "type", - "description": 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 } ], "interfaces": null, @@ -54206,37 +54780,53 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomIssueRelationshipIssueInput", - "description": "Auto generated input for type IssueRelationshipIssue", + "name": "AtomistSkillConfigurationInput", + "description": "Configuration inputs", "fields": null, "inputFields": [ { - "name": "issue", - "description": null, + "name": "enabled", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "parameters", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillParameterInput", + "ofType": null + } + } }, "defaultValue": null } @@ -54247,329 +54837,525 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalInput", - "description": "Auto generated input for type SdmGoal", + "name": "AtomistSkillParameterInput", + "description": "", "fields": null, "inputFields": [ { - "name": "approval", - "description": null, + "name": "boolean", + "description": "", "type": { "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "approvalRequired", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "AtomistSkillBooleanParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "branch", - "description": null, + "name": "float", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "data", - "description": null, + "name": "int", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillIntParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "description", - "description": null, + "name": "multiChoice", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillMultiChoiceParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "descriptions", - "description": null, + "name": "repoFilter", + "description": "", "type": { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDescriptionsInput", + "name": "AtomistSkillRepoFiltersInput", "ofType": null }, "defaultValue": null }, { - "name": "environment", - "description": null, + "name": "schedule", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleInput", "ofType": null }, "defaultValue": null }, { - "name": "error", - "description": null, + "name": "singleChoice", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillSingleChoiceParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "string", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringParameterInput", "ofType": null }, "defaultValue": null }, { - "name": "externalUrl", - "description": null, + "name": "stringArray", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AtomistSkillStringArrayParameterInput", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillBooleanParameterInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "externalUrls", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmExternalUrlInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "fulfillment", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalFulfillmentInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillFloatParameterInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "goalSet", - "description": null, + "name": "name", + "description": "", "type": { - "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": "value", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": null, + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "parameters", - "description": null, + "name": "value", + "description": "", "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": "AtomistSkillMultiChoiceParameterInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "phase", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "preApproval", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "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 + } + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "preApprovalRequired", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "preConditions", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomSdmConditionInput", + "name": "AtomistSkillRepoFiltersValueInput", "ofType": null } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFiltersValueInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "provenance", - "description": null, + "name": "excludes", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillRepoFilterInput", + "ofType": null + } } }, "defaultValue": null }, { - "name": "registration", - "description": null, + "name": "includes", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "repo", - "description": null, + "name": "ownerId", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "retryFeasible", - "description": null, + "name": "providerId", + "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "repoIds", + "description": "", "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": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtomistSkillScheduleInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "signature", - "description": null, + "name": "name", + "description": "", "type": { - "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": "value", + "description": "", "type": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null + "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": "ts", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "uniqueName", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "url", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "version", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -54580,77 +55366,137 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "description": "Auto generated input for type SdmProvenance", + "name": "AtomistSkillStringArrayParameterInput", + "description": "", "fields": null, "inputFields": [ { - "name": "channelId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "correlationId", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": null, + "name": "value", + "description": "", "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": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "registration", - "description": null, + "name": "orgs", + "description": "", "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": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "repos", + "description": "", "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": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "ofType": null + } + } + } }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "userId", - "description": null, + "name": "owner", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "version", - "description": null, + "name": "repo", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -54661,106 +55507,145 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDescriptionsInput", - "description": "Auto generated input for type SdmGoalDescriptions", + "name": "ResourceProviderStateInput", + "description": "", "fields": null, "inputFields": [ { - "name": "canceled", - "description": null, + "name": "state", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceProviderStateName", + "ofType": null + } }, "defaultValue": null }, { - "name": "completed", - "description": null, + "name": "error", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "failed", - "description": null, + "name": "state", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SCMProviderStateName", + "ofType": null + } }, "defaultValue": null }, { - "name": "inProcess", - "description": 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": "planned", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "converged", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "requested", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "unconverged", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "skipped", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "misconfigured", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "stopped", - "description": null, + "name": "unauthorized", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CredentialInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CredentialType", + "ofType": null + } }, "defaultValue": null }, { - "name": "waitingForApproval", - "description": null, + "name": "oauth", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "OAuthInput", "ofType": null }, "defaultValue": null }, { - "name": "waitingForPreApproval", - "description": null, + "name": "password", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "PasswordInput", "ofType": null }, "defaultValue": null @@ -54771,69 +55656,67 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CustomSdmExternalUrlInput", - "description": "Auto generated input for type SdmExternalUrl", + "kind": "ENUM", + "name": "CredentialType", + "description": "", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "OAuthToken", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "Password", + "description": "", + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalFulfillmentInput", - "description": "Auto generated input for type SdmGoalFulfillment", + "name": "OAuthInput", + "description": "", "fields": null, "inputFields": [ { - "name": "method", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, + "name": "secret", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "registration", - "description": null, + "name": "scopes", + "description": "", "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": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, "defaultValue": null } @@ -54844,37 +55727,21 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmConditionInput", - "description": "Auto generated input for type SdmCondition", + "name": "PasswordInput", + "description": "", "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, + "name": "secret", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -54885,40 +55752,86 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "description": "Auto generated input for type SdmRepository", + "name": "WebhookInput", + "description": "", "fields": null, "inputFields": [ { "name": "name", - "description": null, + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "resourceProviderId", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "authType", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } + "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, @@ -54926,77 +55839,169 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetInput", - "description": "Auto generated input for type SdmGoalSet", + "name": "HmacSha1AuthInput", + "description": "", "fields": null, "inputFields": [ { - "name": "branch", - "description": null, + "name": "secret", + "description": "shared secret", "type": { - "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": "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": "goalSetId", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "goals", - "description": null, + "name": "value", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalNameInput", + "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": "provenance", - "description": 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": "SCMOrgsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgs", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", - "ofType": null + "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": "repo", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "id", + "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -55005,38 +56010,28 @@ "defaultValue": null }, { - "name": "state", - "description": null, + "name": "url", + "description": "", "type": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "tags", - "description": null, + "name": "ownerType", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetTagInput", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, "defaultValue": null - }, - { - "name": "ts", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null } ], "interfaces": null, @@ -55045,27 +56040,57 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalNameInput", - "description": "Auto generated input for type SdmGoalName", + "name": "SCMReposInput", + "description": "", "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "orgId", + "description": "The id of the org as represented in the Atomist graph", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "uniqueName", - "description": null, + "name": "owner", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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 } @@ -55076,13 +56101,27 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetTagInput", - "description": "Auto generated input for type SdmGoalSetTag", + "name": "SCMRepoInput", + "description": "", "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "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", @@ -55091,8 +56130,22 @@ "defaultValue": null }, { - "name": "value", - "description": 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", @@ -55107,43 +56160,65 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalDisplayInput", - "description": "Auto generated input for type SdmGoalDisplay", + "name": "SCMCommitInput", + "description": "", "fields": null, "inputFields": [ { - "name": "branch", - "description": null, + "name": "repoId", + "description": "The id of the repo as it appears in the graph", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "format", - "description": null, + "name": "sha", + "description": "The sha of the commit", "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayFormat", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "email", + "description": "The email address of the commit", "type": { "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", + "name": "EmailInput", "ofType": null }, "defaultValue": null }, { - "name": "sha", - "description": 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", @@ -55152,21 +56227,39 @@ "defaultValue": null }, { - "name": "state", - "description": null, + "name": "timestamp", + "description": "The commit timestamp", "type": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "branchName", + "description": "The name of the branch this commit is being ingested on", "type": { - "kind": "SCALAR", - "name": "Int", + "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 @@ -55178,27 +56271,21 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierInput", - "description": "Auto generated input for type SdmBuildIdentifier", + "name": "EmailInput", + "description": "", "fields": null, "inputFields": [ { - "name": "identifier", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": null, + "name": "address", + "description": "", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierRepositoryInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -55209,33 +56296,37 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmBuildIdentifierRepositoryInput", - "description": "Auto generated input for type SdmBuildIdentifierRepository", + "name": "SCMAuthorInput", + "description": "", "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "login", + "description": "The login of the commit author in the SCM provider", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "email", + "description": "The authors email address", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EmailInput", "ofType": null }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "name", + "description": "The name of the author", "type": { "kind": "SCALAR", "name": "String", @@ -55250,13 +56341,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmDeployEnablementInput", - "description": "Auto generated input for type SdmDeployEnablement", + "name": "FingerprintInput", + "description": "For submitting new RepoFingerprints", "fields": null, "inputFields": [ { - "name": "owner", - "description": null, + "name": "data", + "description": "Optional data, such as dependency version", "type": { "kind": "SCALAR", "name": "String", @@ -55265,8 +56356,8 @@ "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "displayName", + "description": "Optional human readable string for this fingerprint", "type": { "kind": "SCALAR", "name": "String", @@ -55275,8 +56366,8 @@ "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "displayType", + "description": "Optional human readable string for the type (Aspect name) of this fingerprint", "type": { "kind": "SCALAR", "name": "String", @@ -55285,63 +56376,40 @@ "defaultValue": null }, { - "name": "state", - "description": null, + "name": "displayValue", + "description": "Optional human readable string for the value of this fingerprint", "type": { - "kind": "ENUM", - "name": "SdmDeployState", + "kind": "SCALAR", + "name": "String", "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, + "name": "name", + "description": "The unique name for this fingerprint, such as the name of a dependency", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionRepositoryInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { "name": "sha", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, + "description": "The hash of this fingerprint - forms ID of a SourceFingerprint", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -55352,37 +56420,49 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmVersionRepositoryInput", - "description": "Auto generated input for type SdmVersionRepository", + "name": "FingerprintTargetInput", + "description": "", "fields": null, "inputFields": [ { "name": "name", - "description": null, + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "sha", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "type", + "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -55393,23 +56473,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeInput", - "description": "Auto generated input for type SdmGoalSetBadge", + "name": "AtmJobTaskInput", + "description": "Input object for creation of AtmJobTask", "fields": null, "inputFields": [ { - "name": "repo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeRepositoryInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sdm", - "description": null, + "name": "data", + "description": "Sets additional information about this AtmJobTask", "type": { "kind": "SCALAR", "name": "String", @@ -55418,12 +56488,16 @@ "defaultValue": null }, { - "name": "token", - "description": null, + "name": "name", + "description": "Sets the name for this AtmJobTask", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -55434,13 +56508,13 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomSdmGoalSetBadgeRepositoryInput", - "description": "Auto generated input for type SdmGoalSetBadgeRepository", + "name": "AtmJobInput", + "description": "The input object for the creation of a AtmJob", "fields": null, "inputFields": [ { - "name": "name", - "description": null, + "name": "data", + "description": "Used to store additional information about this AtmJob", "type": { "kind": "SCALAR", "name": "String", @@ -55449,8 +56523,8 @@ "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "description", + "description": "A description for this job.", "type": { "kind": "SCALAR", "name": "String", @@ -55459,39 +56533,40 @@ "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "initialState", + "description": "The initial state for the job. The default is running. Another option is preparing.", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "AtmInitialJobState", "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, + "name": "jobTasks", + "description": "The tasks for the job", "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": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "ofType": null + } + } + } }, "defaultValue": null }, { - "name": "ttl", - "description": 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", @@ -55500,8 +56575,22 @@ "defaultValue": null }, { - "name": "value", - "description": 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", @@ -55514,29 +56603,56 @@ "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": "CustomSdmRepoProvenanceInput", - "description": "Auto generated input for type SdmRepoProvenance", + "name": "AtmJobTaskStateInput", + "description": "Input object for setting the state of a AtmJobTask", "fields": null, "inputFields": [ { - "name": "provenance", - "description": null, + "name": "message", + "description": "Sets additional information about the state of this AtmJobTask", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmProvenanceInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "state", + "description": "Sets the AtmJobTaskState of this AtmJobState", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSdmRepositoryInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + } }, "defaultValue": null } @@ -55547,56 +56663,175 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomPolicyLogInput", - "description": "Auto generated input for type PolicyLog", + "name": "AtmTaskRequest", + "description": "The input object for proposing an offer of work", "fields": null, "inputFields": [ { - "name": "apply", - "description": null, + "name": "jobId", + "description": "The id of the job", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomApplyPolicyLogInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "manage", - "description": null, + "name": "maxTaskCount", + "description": "The maxiumum number of tasks to get. Default is 1.", "type": { - "kind": "INPUT_OBJECT", - "name": "CustomManageTargetPolicyLogInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "name", - "description": 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": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null }, { - "name": "subscribe", + "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": "CustomCommitIssueRelationshipInput", + "description": "Auto generated input for type CommitIssueRelationship", + "fields": null, + "inputFields": [ + { + "name": "commit", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "CustomManageSubscriptionPolicyLogInput", + "name": "CustomCommitIssueRelationshipCommitInput", "ofType": null }, "defaultValue": null }, { - "name": "ts", + "name": "issue", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipIssueInput", "ofType": null }, "defaultValue": null @@ -55605,8 +56840,8 @@ "name": "type", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommitIssueRelationshipType", "ofType": null }, "defaultValue": null @@ -55618,22 +56853,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomApplyPolicyLogInput", - "description": "Auto generated input for type ApplyPolicyLog", + "name": "CustomCommitIssueRelationshipCommitInput", + "description": "Auto generated input for type CommitIssueRelationshipCommit", "fields": null, "inputFields": [ { - "name": "_prId", + "name": "owner", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_sha", + "name": "repo", "description": null, "type": { "kind": "SCALAR", @@ -55643,7 +56878,7 @@ "defaultValue": null }, { - "name": "branch", + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -55651,9 +56886,20 @@ "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": "message", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -55663,17 +56909,17 @@ "defaultValue": null }, { - "name": "state", + "name": "owner", "description": null, "type": { - "kind": "ENUM", - "name": "ApplyPolicyState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "targetSha", + "name": "repo", "description": null, "type": { "kind": "SCALAR", @@ -55689,32 +56935,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomManageTargetPolicyLogInput", - "description": "Auto generated input for type ManageTargetPolicyLog", + "name": "CustomDeploymentInput", + "description": "Auto generated input for type Deployment", "fields": null, "inputFields": [ { - "name": "action", - "description": null, - "type": { - "kind": "ENUM", - "name": "ManageTargetPolicyAction", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "author", + "name": "commit", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentCommitInput", "ofType": null }, "defaultValue": null }, { - "name": "reason", + "name": "environment", "description": null, "type": { "kind": "SCALAR", @@ -55724,17 +56960,28 @@ "defaultValue": null }, { - "name": "streamId", + "name": "ts", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "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": "streamName", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -55744,7 +56991,7 @@ "defaultValue": null }, { - "name": "targetSha", + "name": "repo", "description": null, "type": { "kind": "SCALAR", @@ -55754,7 +57001,7 @@ "defaultValue": null }, { - "name": "targetValue", + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -55770,32 +57017,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomManageSubscriptionPolicyLogInput", - "description": "Auto generated input for type ManageSubscriptionPolicyLog", + "name": "CustomIssueRelationshipInput", + "description": "Auto generated input for type IssueRelationship", "fields": null, "inputFields": [ { - "name": "action", + "name": "relationshipId", "description": null, "type": { - "kind": "ENUM", - "name": "ManageSubscriptionPolicyAction", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "author", + "name": "source", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", "ofType": null }, "defaultValue": null }, { - "name": "branch", + "name": "state", "description": null, "type": { "kind": "SCALAR", @@ -55805,7 +57052,38 @@ "defaultValue": null }, { - "name": "owner", + "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", @@ -55815,7 +57093,7 @@ "defaultValue": null }, { - "name": "reason", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -55833,19 +57111,40 @@ "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": "streamId", + "name": "approvalRequired", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "streamName", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -55855,7 +57154,7 @@ "defaultValue": null }, { - "name": "targetSha", + "name": "data", "description": null, "type": { "kind": "SCALAR", @@ -55865,7 +57164,7 @@ "defaultValue": null }, { - "name": "targetValue", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -55873,20 +57172,19 @@ "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", + "name": "descriptions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDescriptionsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", "description": null, "type": { "kind": "SCALAR", @@ -55896,7 +57194,7 @@ "defaultValue": null }, { - "name": "_owner", + "name": "error", "description": null, "type": { "kind": "SCALAR", @@ -55906,7 +57204,7 @@ "defaultValue": null }, { - "name": "_repo", + "name": "externalKey", "description": null, "type": { "kind": "SCALAR", @@ -55916,7 +57214,7 @@ "defaultValue": null }, { - "name": "_sha", + "name": "externalUrl", "description": null, "type": { "kind": "SCALAR", @@ -55926,35 +57224,31 @@ "defaultValue": null }, { - "name": "aspects", + "name": "externalUrls", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceAspectInput", + "name": "CustomSdmExternalUrlInput", "ofType": null } }, "defaultValue": null }, { - "name": "differences", + "name": "fulfillment", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceFingerprintInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalFulfillmentInput", + "ofType": null }, "defaultValue": null }, { - "name": "owner", + "name": "goalSet", "description": null, "type": { "kind": "SCALAR", @@ -55964,52 +57258,37 @@ "defaultValue": null }, { - "name": "state", + "name": "goalSetId", "description": null, "type": { - "kind": "ENUM", - "name": "PolicyCompliaceState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "targets", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomPolicyComplianceFingerprintInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "ts", + "name": "parameters", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "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", + "name": "phase", "description": null, "type": { "kind": "SCALAR", @@ -56019,7 +57298,17 @@ "defaultValue": null }, { - "name": "manageable", + "name": "preApproval", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preApprovalRequired", "description": null, "type": { "kind": "SCALAR", @@ -56029,7 +57318,35 @@ "defaultValue": null }, { - "name": "type", + "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", @@ -56037,40 +57354,29 @@ "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", + "name": "repo", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", "ofType": null }, "defaultValue": null }, { - "name": "displayName", + "name": "retryFeasible", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "displayType", + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -56080,7 +57386,7 @@ "defaultValue": null }, { - "name": "displayValue", + "name": "signature", "description": null, "type": { "kind": "SCALAR", @@ -56090,17 +57396,27 @@ "defaultValue": null }, { - "name": "name", + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "sha", + "name": "uniqueName", "description": null, "type": { "kind": "SCALAR", @@ -56110,7 +57426,7 @@ "defaultValue": null }, { - "name": "type", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -56118,24 +57434,13 @@ "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", + "name": "version", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -56147,12 +57452,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomPolicyTargetInput", - "description": "Auto generated input for type PolicyTarget", + "name": "CustomSdmProvenanceInput", + "description": "Auto generated input for type SdmProvenance", "fields": null, "inputFields": [ { - "name": "data", + "name": "channelId", "description": null, "type": { "kind": "SCALAR", @@ -56162,7 +57467,7 @@ "defaultValue": null }, { - "name": "displayName", + "name": "correlationId", "description": null, "type": { "kind": "SCALAR", @@ -56172,7 +57477,7 @@ "defaultValue": null }, { - "name": "displayValue", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -56182,7 +57487,7 @@ "defaultValue": null }, { - "name": "name", + "name": "registration", "description": null, "type": { "kind": "SCALAR", @@ -56192,31 +57497,27 @@ "defaultValue": null }, { - "name": "sha", + "name": "ts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "streams", + "name": "userId", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "version", "description": null, "type": { "kind": "SCALAR", @@ -56232,120 +57533,92 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardInput", - "description": "Auto generated input for type Card", + "name": "CustomSdmGoalDescriptionsInput", + "description": "Auto generated input for type SdmGoalDescriptions", "fields": null, "inputFields": [ { - "name": "actionGroups", + "name": "canceled", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "actions", + "name": "completed", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "failed", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "collaborators", + "name": "inProcess", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardCollaboratorInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "comments", + "name": "planned", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "correlations", + "name": "requested", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardCorrelationInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "events", + "name": "skipped", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardEventInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSets", + "name": "stopped", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalSetInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "key", + "name": "waitingForApproval", "description": null, "type": { "kind": "SCALAR", @@ -56355,7 +57628,7 @@ "defaultValue": null }, { - "name": "post", + "name": "waitingForPreApproval", "description": null, "type": { "kind": "SCALAR", @@ -56363,47 +57636,61 @@ "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": "provenance", + "name": "label", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardProvenanceInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "reactions", + "name": "url", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardReactionInput", - "ofType": null - } + "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": "repository", + "name": "method", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardRepositoryInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "shortTitle", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -56413,37 +57700,48 @@ "defaultValue": null }, { - "name": "title", + "name": "registration", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardTitleInput", + "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": "ts", + "name": "environment", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ttl", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "type", + "name": "uniqueName", "description": null, "type": { "kind": "SCALAR", @@ -56459,26 +57757,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", - "description": "Auto generated input for type CardActionGroup", + "name": "CustomSdmRepositoryInput", + "description": "Auto generated input for type SdmRepository", "fields": null, "inputFields": [ { - "name": "actions", + "name": "name", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "text", + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", "description": null, "type": { "kind": "SCALAR", @@ -56494,12 +57798,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "description": "Auto generated input for type CardAction", + "name": "CustomSdmGoalSetInput", + "description": "Auto generated input for type SdmGoalSet", "fields": null, "inputFields": [ { - "name": "command", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -56509,17 +57813,17 @@ "defaultValue": null }, { - "name": "confirm", + "name": "goalSet", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionConfirmationInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "parameterName", + "name": "goalSetId", "description": null, "type": { "kind": "SCALAR", @@ -56529,49 +57833,96 @@ "defaultValue": null }, { - "name": "parameterOptionGroups", + "name": "goals", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionGroupInput", + "name": "CustomSdmGoalNameInput", "ofType": null } }, "defaultValue": null }, { - "name": "parameterOptions", + "name": "provenance", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null }, "defaultValue": null }, { - "name": "parameters", + "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": "CustomCardActionParameterInput", + "name": "CustomSdmGoalSetTagInput", "ofType": null } }, "defaultValue": null }, { - "name": "registration", + "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", @@ -56581,7 +57932,7 @@ "defaultValue": null }, { - "name": "role", + "name": "uniqueName", "description": null, "type": { "kind": "SCALAR", @@ -56589,9 +57940,20 @@ "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": "text", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -56601,7 +57963,7 @@ "defaultValue": null }, { - "name": "type", + "name": "value", "description": null, "type": { "kind": "SCALAR", @@ -56617,12 +57979,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionConfirmationInput", - "description": "Auto generated input for type CardActionConfirmation", + "name": "CustomSdmGoalDisplayInput", + "description": "Auto generated input for type SdmGoalDisplay", "fields": null, "inputFields": [ { - "name": "body", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -56632,17 +57994,27 @@ "defaultValue": null }, { - "name": "dismiss", + "name": "format", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", "ofType": null }, "defaultValue": null }, { - "name": "ok", + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -56652,11 +58024,21 @@ "defaultValue": null }, { - "name": "title", + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -56668,12 +58050,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionGroupInput", - "description": "Auto generated input for type CardActionParameterOptionGroup", + "name": "CustomSdmBuildIdentifierInput", + "description": "Auto generated input for type SdmBuildIdentifier", "fields": null, "inputFields": [ { - "name": "name", + "name": "identifier", "description": null, "type": { "kind": "SCALAR", @@ -56683,16 +58065,12 @@ "defaultValue": null }, { - "name": "options", + "name": "repo", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "ofType": null }, "defaultValue": null } @@ -56703,8 +58081,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterOptionInput", - "description": "Auto generated input for type CardActionParameterOption", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "description": "Auto generated input for type SdmBuildIdentifierRepository", "fields": null, "inputFields": [ { @@ -56718,7 +58096,17 @@ "defaultValue": null }, { - "name": "value", + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", "description": null, "type": { "kind": "SCALAR", @@ -56734,12 +58122,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardActionParameterInput", - "description": "Auto generated input for type CardActionParameter", + "name": "CustomSdmDeployEnablementInput", + "description": "Auto generated input for type SdmDeployEnablement", "fields": null, "inputFields": [ { - "name": "name", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -56749,7 +58137,17 @@ "defaultValue": null }, { - "name": "value", + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", "description": null, "type": { "kind": "SCALAR", @@ -56757,6 +58155,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -56765,12 +58173,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardBodyInput", - "description": "Auto generated input for type CardBody", + "name": "CustomSdmVersionInput", + "description": "Auto generated input for type SdmVersion", "fields": null, "inputFields": [ { - "name": "avatar", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -56780,7 +58188,17 @@ "defaultValue": null }, { - "name": "hint", + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -56790,7 +58208,28 @@ "defaultValue": null }, { - "name": "login", + "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", @@ -56800,7 +58239,7 @@ "defaultValue": null }, { - "name": "text", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -56810,11 +58249,11 @@ "defaultValue": null }, { - "name": "ts", + "name": "providerId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -56826,22 +58265,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardCollaboratorInput", - "description": "Auto generated input for type CardCollaborator", + "name": "CustomSdmGoalSetBadgeInput", + "description": "Auto generated input for type SdmGoalSetBadge", "fields": null, "inputFields": [ { - "name": "avatar", + "name": "repo", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeRepositoryInput", "ofType": null }, "defaultValue": null }, { - "name": "link", + "name": "sdm", "description": null, "type": { "kind": "SCALAR", @@ -56851,7 +58290,7 @@ "defaultValue": null }, { - "name": "login", + "name": "token", "description": null, "type": { "kind": "SCALAR", @@ -56867,26 +58306,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardCorrelationInput", - "description": "Auto generated input for type CardCorrelation", + "name": "CustomSdmGoalSetBadgeRepositoryInput", + "description": "Auto generated input for type SdmGoalSetBadgeRepository", "fields": null, "inputFields": [ { - "name": "body", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCorrelationBodyInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "icon", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -56896,7 +58321,7 @@ "defaultValue": null }, { - "name": "link", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -56906,7 +58331,7 @@ "defaultValue": null }, { - "name": "shortTitle", + "name": "providerId", "description": null, "type": { "kind": "SCALAR", @@ -56914,9 +58339,20 @@ "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": "title", + "name": "key", "description": null, "type": { "kind": "SCALAR", @@ -56926,7 +58362,7 @@ "defaultValue": null }, { - "name": "ts", + "name": "ttl", "description": null, "type": { "kind": "SCALAR", @@ -56936,7 +58372,7 @@ "defaultValue": null }, { - "name": "type", + "name": "value", "description": null, "type": { "kind": "SCALAR", @@ -56952,26 +58388,26 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCorrelationBodyInput", - "description": "Auto generated input for type CorrelationBody", + "name": "CustomSdmRepoProvenanceInput", + "description": "Auto generated input for type SdmRepoProvenance", "fields": null, "inputFields": [ { - "name": "icon", + "name": "provenance", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", "ofType": null }, "defaultValue": null }, { - "name": "text", + "name": "repo", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", "ofType": null }, "defaultValue": null @@ -56983,40 +58419,32 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardEventInput", - "description": "Auto generated input for type CardEvent", + "name": "CustomPolicyLogInput", + "description": "Auto generated input for type PolicyLog", "fields": null, "inputFields": [ { - "name": "actionGroups", + "name": "apply", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionGroupInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomApplyPolicyLogInput", + "ofType": null }, "defaultValue": null }, { - "name": "actions", + "name": "manage", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomManageTargetPolicyLogInput", + "ofType": null }, "defaultValue": null }, { - "name": "icon", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -57026,11 +58454,11 @@ "defaultValue": null }, { - "name": "text", + "name": "subscribe", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomManageSubscriptionPolicyLogInput", "ofType": null }, "defaultValue": null @@ -57044,6 +58472,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -57052,36 +58490,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalSetInput", - "description": "Auto generated input for type CardSdmGoalSet", + "name": "CustomApplyPolicyLogInput", + "description": "Auto generated input for type ApplyPolicyLog", "fields": null, "inputFields": [ { - "name": "actions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "duration", + "name": "_prId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "goalSet", + "name": "_sha", "description": null, "type": { "kind": "SCALAR", @@ -57091,7 +58515,7 @@ "defaultValue": null }, { - "name": "goalSetId", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -57101,21 +58525,7 @@ "defaultValue": null }, { - "name": "goals", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "registration", + "name": "message", "description": null, "type": { "kind": "SCALAR", @@ -57128,18 +58538,18 @@ "name": "state", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ApplyPolicyState", "ofType": null }, "defaultValue": null }, { - "name": "ts", + "name": "targetSha", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -57151,36 +58561,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardSdmGoalInput", - "description": "Auto generated input for type CardSdmGoal", + "name": "CustomManageTargetPolicyLogInput", + "description": "Auto generated input for type ManageTargetPolicyLog", "fields": null, "inputFields": [ { - "name": "actions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomCardActionInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "description", + "name": "action", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManageTargetPolicyAction", "ofType": null }, "defaultValue": null }, { - "name": "environment", + "name": "author", "description": null, "type": { "kind": "SCALAR", @@ -57190,7 +58586,7 @@ "defaultValue": null }, { - "name": "link", + "name": "reason", "description": null, "type": { "kind": "SCALAR", @@ -57200,17 +58596,17 @@ "defaultValue": null }, { - "name": "logLink", + "name": "streamId", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "streamName", "description": null, "type": { "kind": "SCALAR", @@ -57220,7 +58616,7 @@ "defaultValue": null }, { - "name": "state", + "name": "targetSha", "description": null, "type": { "kind": "SCALAR", @@ -57230,11 +58626,11 @@ "defaultValue": null }, { - "name": "ts", + "name": "targetValue", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -57246,33 +58642,22 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomCardProvenanceInput", - "description": "Auto generated input for type CardProvenance", + "name": "CustomManageSubscriptionPolicyLogInput", + "description": "Auto generated input for type ManageSubscriptionPolicyLog", "fields": null, "inputFields": [ { - "name": "name", + "name": "action", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", "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", + "name": "author", "description": null, "type": { "kind": "SCALAR", @@ -57282,7 +58667,7 @@ "defaultValue": null }, { - "name": "login", + "name": "branch", "description": null, "type": { "kind": "SCALAR", @@ -57292,7 +58677,7 @@ "defaultValue": null }, { - "name": "reaction", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -57300,20 +58685,9 @@ "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", + "name": "reason", "description": null, "type": { "kind": "SCALAR", @@ -57323,7 +58697,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "repo", "description": null, "type": { "kind": "SCALAR", @@ -57333,28 +58707,17 @@ "defaultValue": null }, { - "name": "slug", + "name": "streamId", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "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", + "name": "streamName", "description": null, "type": { "kind": "SCALAR", @@ -57364,7 +58727,17 @@ "defaultValue": null }, { - "name": "text", + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetValue", "description": null, "type": { "kind": "SCALAR", @@ -57380,82 +58753,80 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomNotificationInput", - "description": "Auto generated input for type Notification", + "name": "CustomPolicyComplianceInput", + "description": "Auto generated input for type PolicyCompliance", "fields": null, "inputFields": [ { - "name": "actions", + "name": "_branch", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "_owner", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "contentType", + "name": "_repo", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "correlationId", + "name": "_sha", "description": null, "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aspects", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceAspectInput", "ofType": null } }, "defaultValue": null }, { - "name": "key", + "name": "differences", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", "ofType": null } }, "defaultValue": null }, { - "name": "post", + "name": "owner", "description": null, "type": { "kind": "SCALAR", @@ -57465,31 +58836,31 @@ "defaultValue": null }, { - "name": "recipient", + "name": "state", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationRecipientInput", + "kind": "ENUM", + "name": "PolicyCompliaceState", "ofType": null }, "defaultValue": null }, { - "name": "ts", + "name": "targets", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", "ofType": null } }, "defaultValue": null }, { - "name": "ttl", + "name": "ts", "description": null, "type": { "kind": "SCALAR", @@ -57505,12 +58876,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionInput", - "description": "Auto generated input for type NotificationAction", + "name": "CustomPolicyComplianceAspectInput", + "description": "Auto generated input for type PolicyComplianceAspect", "fields": null, "inputFields": [ { - "name": "command", + "name": "displayType", "description": null, "type": { "kind": "SCALAR", @@ -57520,59 +58891,68 @@ "defaultValue": null }, { - "name": "parameterName", + "name": "manageable", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "parameterOptionGroups", + "name": "type", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionGroupInput", - "ofType": null - } + "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": "parameterOptions", + "name": "displayName", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "parameters", + "name": "displayType", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "registration", + "name": "displayValue", "description": null, "type": { "kind": "SCALAR", @@ -57582,7 +58962,7 @@ "defaultValue": null }, { - "name": "role", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -57592,7 +58972,7 @@ "defaultValue": null }, { - "name": "text", + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -57618,8 +58998,8 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionGroupInput", - "description": "Auto generated input for type NotificationActionParameterOptionGroup", + "name": "CustomPolicyTargetStreamInput", + "description": "Auto generated input for type PolicyTargetStream", "fields": null, "inputFields": [ { @@ -57631,20 +59011,6 @@ "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, @@ -57653,12 +59019,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomNotificationActionParameterOptionInput", - "description": "Auto generated input for type NotificationActionParameterOption", + "name": "CustomPolicyTargetInput", + "description": "Auto generated input for type PolicyTarget", "fields": null, "inputFields": [ { - "name": "name", + "name": "data", "description": null, "type": { "kind": "SCALAR", @@ -57668,7 +59034,7 @@ "defaultValue": null }, { - "name": "value", + "name": "displayName", "description": null, "type": { "kind": "SCALAR", @@ -57676,18 +59042,17 @@ "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": "displayValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": null, @@ -57699,7 +59064,7 @@ "defaultValue": null }, { - "name": "value", + "name": "sha", "description": null, "type": { "kind": "SCALAR", @@ -57707,31 +59072,30 @@ "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", + "name": "streams", "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -57740,12 +59104,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "CustomAspectRegistrationInput", - "description": "Auto generated input for type AspectRegistration", + "name": "CustomSkillOutputInput", + "description": "Auto generated input for type SkillOutput", "fields": null, "inputFields": [ { - "name": "category", + "name": "_branch", "description": null, "type": { "kind": "SCALAR", @@ -57755,7 +59119,7 @@ "defaultValue": null }, { - "name": "description", + "name": "_owner", "description": null, "type": { "kind": "SCALAR", @@ -57765,7 +59129,7 @@ "defaultValue": null }, { - "name": "displayName", + "name": "_repo", "description": null, "type": { "kind": "SCALAR", @@ -57775,7 +59139,7 @@ "defaultValue": null }, { - "name": "endpoint", + "name": "_sha", "description": null, "type": { "kind": "SCALAR", @@ -57785,17 +59149,17 @@ "defaultValue": null }, { - "name": "manageable", + "name": "classifier", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "correlationId", "description": null, "type": { "kind": "SCALAR", @@ -57805,7 +59169,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "orgParentId", "description": null, "type": { "kind": "SCALAR", @@ -57815,7 +59179,7 @@ "defaultValue": null }, { - "name": "shortName", + "name": "repoParentId", "description": null, "type": { "kind": "SCALAR", @@ -57825,27 +59189,17 @@ "defaultValue": null }, { - "name": "state", - "description": null, - "type": { - "kind": "ENUM", - "name": "AspectRegistrationState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "unit", + "name": "skill", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomSkillOutputSkillInput", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "type", "description": null, "type": { "kind": "SCALAR", @@ -57855,7 +59209,7 @@ "defaultValue": null }, { - "name": "uuid", + "name": "uri", "description": null, "type": { "kind": "SCALAR", @@ -57870,214 +59224,4178 @@ "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 - }, + "kind": "INPUT_OBJECT", + "name": "CustomSkillOutputSkillInput", + "description": "Auto generated input for type SkillOutputSkill", + "fields": null, + "inputFields": [ { "name": "name", - "description": "The name of the channel", - "args": [], + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "id", - "description": "The id of the channel", - "args": [], + "name": "version", + "description": null, "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": "OwnerLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "description": "Auto generated input for type Card", + "fields": null, + "inputFields": [ { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], + "name": "actionGroups", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], + "name": "actions", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "login", - "description": "The login that should be used", - "args": [], + "name": "body", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", "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": [ + "defaultValue": null + }, { - "name": "repo", - "description": "The repository name", - "args": [], + "name": "collaborators", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCollaboratorInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "owner", - "description": "The owner name for the Organization/Team", - "args": [], + "name": "comments", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], + "name": "correlations", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCorrelationInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "login", - "description": "The login that should be used", - "args": [], + "name": "events", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardEventInput", + "ofType": null + } }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ + "defaultValue": null + }, { - "name": "AtomistTeamSkill", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "goalSets", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AtomistTeamSkill", + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalSetInput", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, { - "name": "Issue", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "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": "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": "AtomistSkill", + "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": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkill", + "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 + } + ], + "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 + } + ], + "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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Build", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Stage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Job", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Workflow", + "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": "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": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "configs", + "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": "_WorkflowOrdering", + "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": "Workflow", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Branch", + "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": "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 + }, + { + "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": "remoteRepoHtmlUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { - "name": "number", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BranchOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "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": "Branch", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DeletedBranch", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null @@ -58093,7 +63411,7 @@ "defaultValue": null }, { - "name": "title", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -58103,7 +63421,120 @@ "defaultValue": null }, { - "name": "body", + "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", + "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": "DeletedBranch", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChatId", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -58113,17 +63544,17 @@ "defaultValue": null }, { - "name": "state", + "name": "userId", "description": "", "type": { - "kind": "ENUM", - "name": "IssueState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -58133,7 +63564,7 @@ "defaultValue": null }, { - "name": "action", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -58143,7 +63574,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", @@ -58153,7 +63584,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -58163,7 +63594,27 @@ "defaultValue": null }, { - "name": "closedAt", + "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", @@ -58187,21 +63638,21 @@ "defaultValue": null }, { - "name": "numbers", + "name": "screenNames", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "userIds", "description": "", "type": { "kind": "LIST", @@ -58215,7 +63666,7 @@ "defaultValue": null }, { - "name": "titles", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -58229,7 +63680,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "timezoneLabels", "description": "", "type": { "kind": "LIST", @@ -58243,35 +63694,162 @@ "defaultValue": null }, { - "name": "states", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "IssueState", + "name": "_ChatIdOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "timestamps", + "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", + "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": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "actions", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -58285,7 +63863,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -58299,7 +63877,7 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "normalizedNames", "description": "", "type": { "kind": "LIST", @@ -58313,7 +63891,7 @@ "defaultValue": null }, { - "name": "closedAts", + "name": "channelIds", "description": "", "type": { "kind": "LIST", @@ -58334,7 +63912,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -58376,7 +63954,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "ChatChannel", "ofType": null } }, @@ -58384,7 +63962,7 @@ "deprecationReason": null }, { - "name": "Comment", + "name": "PullRequest", "description": "", "args": [ { @@ -58397,6 +63975,36 @@ }, "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": "", @@ -58407,6 +64015,26 @@ }, "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": "", @@ -58418,7 +64046,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -58428,7 +64056,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -58438,7 +64066,7 @@ "defaultValue": null }, { - "name": "commentId", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -58448,7 +64076,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -58458,7 +64086,7 @@ "defaultValue": null }, { - "name": "path", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -58468,7 +64096,7 @@ "defaultValue": null }, { - "name": "position", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -58478,7 +64106,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -58488,11 +64116,21 @@ "defaultValue": null }, { - "name": "commentType", + "name": "mergeStatus", "description": "", "type": { "kind": "ENUM", - "name": "CommentCommentType", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "action", + "description": "", + "type": { + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null }, "defaultValue": null @@ -58511,6 +64149,48 @@ }, "defaultValue": null }, + { + "name": "numbers", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "prIds", + "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": "bodys", "description": "", @@ -58525,6 +64205,20 @@ }, "defaultValue": null }, + { + "name": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "timestamps", "description": "", @@ -58540,7 +64234,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "baseBranchNames", "description": "", "type": { "kind": "LIST", @@ -58554,7 +64248,7 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "branchNames", "description": "", "type": { "kind": "LIST", @@ -58568,7 +64262,7 @@ "defaultValue": null }, { - "name": "commentIds", + "name": "titles", "description": "", "type": { "kind": "LIST", @@ -58582,7 +64276,7 @@ "defaultValue": null }, { - "name": "gitHubIds", + "name": "createdAts", "description": "", "type": { "kind": "LIST", @@ -58596,7 +64290,7 @@ "defaultValue": null }, { - "name": "paths", + "name": "updatedAts", "description": "", "type": { "kind": "LIST", @@ -58610,7 +64304,7 @@ "defaultValue": null }, { - "name": "positions", + "name": "closedAts", "description": "", "type": { "kind": "LIST", @@ -58624,7 +64318,7 @@ "defaultValue": null }, { - "name": "htmlUrls", + "name": "mergedAts", "description": "", "type": { "kind": "LIST", @@ -58638,14 +64332,28 @@ "defaultValue": null }, { - "name": "commentTypes", + "name": "mergeStatuss", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "CommentCommentType", + "name": "MergeStatus", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null } }, @@ -58659,7 +64367,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -58694,6 +64402,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -58701,7 +64419,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "PullRequest", "ofType": null } }, @@ -58709,7 +64427,7 @@ "deprecationReason": null }, { - "name": "Label", + "name": "Org", "description": "", "args": [ { @@ -58723,17 +64441,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -58743,11 +64451,11 @@ "defaultValue": null }, { - "name": "color", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -58767,21 +64475,7 @@ "defaultValue": null }, { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "defaults", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -58795,14 +64489,14 @@ "defaultValue": null }, { - "name": "colors", + "name": "ownerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, @@ -58816,7 +64510,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_LabelOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -58851,6 +64545,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -58858,7 +64562,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Label", + "name": "Org", "ofType": null } }, @@ -58866,7 +64570,7 @@ "deprecationReason": null }, { - "name": "Repo", + "name": "GitHubAppInstallation", "description": "", "args": [ { @@ -58890,119 +64594,146 @@ "defaultValue": null }, { - "name": "name", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "ids", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "owners", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppInstallationOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "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 - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCMId", + "description": "", + "args": [ { - "name": "defaultBranch", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "login", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owners", + "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": "avatar", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "repoIds", + "name": "logins", "description": "", "type": { "kind": "LIST", @@ -59016,7 +64747,7 @@ "defaultValue": null }, { - "name": "gitHubIds", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -59030,7 +64761,7 @@ "defaultValue": null }, { - "name": "defaultBranchs", + "name": "avatars", "description": "", "type": { "kind": "LIST", @@ -59051,7 +64782,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -59086,16 +64817,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_RepoFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -59103,7 +64824,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "SCMId", "ofType": null } }, @@ -59111,7 +64832,7 @@ "deprecationReason": null }, { - "name": "Commit", + "name": "GitHubAppResourceUser", "description": "", "args": [ { @@ -59125,7 +64846,7 @@ "defaultValue": null }, { - "name": "sha", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -59135,17 +64856,78 @@ "defaultValue": null }, { - "name": "message", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppResourceUserOrdering", + "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": "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": "GitHubAppResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubId", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -59155,21 +64937,17 @@ "defaultValue": null }, { - "name": "shas", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "messages", + "name": "logins", "description": "", "type": { "kind": "LIST", @@ -59183,7 +64961,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -59204,7 +64982,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_GitHubIdOrdering", "ofType": null } }, @@ -59246,7 +65024,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "GitHubId", "ofType": null } }, @@ -59254,7 +65032,7 @@ "deprecationReason": null }, { - "name": "Push", + "name": "Tag", "description": "", "args": [ { @@ -59268,7 +65046,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -59278,7 +65056,27 @@ "defaultValue": null }, { - "name": "branch", + "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", @@ -59302,7 +65100,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -59316,7 +65114,35 @@ "defaultValue": null }, { - "name": "branchs", + "name": "descriptions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "refs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -59337,7 +65163,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PushOrdering", + "name": "_TagOrdering", "ofType": null } }, @@ -59372,16 +65198,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PushFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -59389,7 +65205,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Push", + "name": "Tag", "ofType": null } }, @@ -59397,39 +65213,9 @@ "deprecationReason": null }, { - "name": "Build", + "name": "K8Pod", "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": "", @@ -59441,17 +65227,7 @@ "defaultValue": null }, { - "name": "status", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", + "name": "phase", "description": "", "type": { "kind": "SCALAR", @@ -59461,7 +65237,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -59471,17 +65247,17 @@ "defaultValue": null }, { - "name": "trigger", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", @@ -59491,17 +65267,17 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -59511,7 +65287,7 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -59521,7 +65297,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -59531,7 +65307,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "specsJSON", "description": "", "type": { "kind": "SCALAR", @@ -59541,7 +65317,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "envJSON", "description": "", "type": { "kind": "SCALAR", @@ -59551,7 +65327,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "metadataJSON", "description": "", "type": { "kind": "SCALAR", @@ -59561,31 +65337,27 @@ "defaultValue": null }, { - "name": "data", + "name": "containersCrashLoopBackOff", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "resourceVersion", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "buildIds", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -59599,21 +65371,7 @@ "defaultValue": null }, { - "name": "numbers", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", + "name": "phases", "description": "", "type": { "kind": "LIST", @@ -59627,21 +65385,7 @@ "defaultValue": null }, { - "name": "statuss", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", + "name": "environments", "description": "", "type": { "kind": "LIST", @@ -59655,7 +65399,7 @@ "defaultValue": null }, { - "name": "compareUrls", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -59669,21 +65413,7 @@ "defaultValue": null }, { - "name": "triggers", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", + "name": "baseNames", "description": "", "type": { "kind": "LIST", @@ -59697,21 +65427,21 @@ "defaultValue": null }, { - "name": "pullRequestNumbers", + "name": "namespaces", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "startedAts", + "name": "statusJSONs", "description": "", "type": { "kind": "LIST", @@ -59725,7 +65455,7 @@ "defaultValue": null }, { - "name": "finishedAts", + "name": "hosts", "description": "", "type": { "kind": "LIST", @@ -59739,7 +65469,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "states", "description": "", "type": { "kind": "LIST", @@ -59753,7 +65483,7 @@ "defaultValue": null }, { - "name": "workflowIds", + "name": "specsJSONs", "description": "", "type": { "kind": "LIST", @@ -59767,7 +65497,7 @@ "defaultValue": null }, { - "name": "jobNames", + "name": "envJSONs", "description": "", "type": { "kind": "LIST", @@ -59781,7 +65511,7 @@ "defaultValue": null }, { - "name": "jobIds", + "name": "metadataJSONs", "description": "", "type": { "kind": "LIST", @@ -59795,14 +65525,14 @@ "defaultValue": null }, { - "name": "datas", + "name": "resourceVersions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -59816,7 +65546,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_K8PodOrdering", "ofType": null } }, @@ -59851,6 +65581,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -59858,7 +65598,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Build", + "name": "K8Pod", "ofType": null } }, @@ -59866,31 +65606,31 @@ "deprecationReason": null }, { - "name": "Pipeline", + "name": "K8Container", "description": "", "args": [ { - "name": "_id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "pipelineId", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -59900,44 +65640,17 @@ "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": "environment", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "containerJSON", "description": "", "type": { "kind": "SCALAR", @@ -59945,36 +65658,9 @@ "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": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null }, { - "name": "name", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -59984,54 +65670,37 @@ "defaultValue": null }, { - "name": "jobId", + "name": "stateReason", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Job", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Workflow", - "description": "", - "args": [ + }, { - "name": "id", + "name": "ready", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "restartCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "workflowId", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -60041,17 +65710,17 @@ "defaultValue": null }, { - "name": "provider", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "config", + "name": "containerID", "description": "", "type": { "kind": "SCALAR", @@ -60061,21 +65730,21 @@ "defaultValue": null }, { - "name": "ids", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "imageNames", "description": "", "type": { "kind": "LIST", @@ -60089,7 +65758,7 @@ "defaultValue": null }, { - "name": "workflowIds", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -60103,7 +65772,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "environments", "description": "", "type": { "kind": "LIST", @@ -60117,7 +65786,7 @@ "defaultValue": null }, { - "name": "configs", + "name": "containerJSONs", "description": "", "type": { "kind": "LIST", @@ -60131,132 +65800,49 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "states", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_WorkflowOrdering", + "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": "Workflow", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Branch", - "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": "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": "stateReasons", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", + "name": "restartCounts", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "statusJSONs", "description": "", "type": { "kind": "LIST", @@ -60270,21 +65856,21 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "resourceVersions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "remoteRepoHtmlUrls", + "name": "containerIDs", "description": "", "type": { "kind": "LIST", @@ -60305,7 +65891,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BranchOrdering", + "name": "_K8ContainerOrdering", "ofType": null } }, @@ -60347,7 +65933,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Branch", + "name": "K8Container", "ofType": null } }, @@ -60355,21 +65941,21 @@ "deprecationReason": null }, { - "name": "DeletedBranch", + "name": "DockerImage", "description": "", "args": [ { - "name": "id", + "name": "image", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -60389,21 +65975,21 @@ "defaultValue": null }, { - "name": "ids", + "name": "images", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "imageNames", "description": "", "type": { "kind": "LIST", @@ -60438,7 +66024,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_DeletedBranchOrdering", + "name": "_DockerImageOrdering", "ofType": null } }, @@ -60480,7 +66066,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DeletedBranch", + "name": "DockerImage", "ofType": null } }, @@ -60488,31 +66074,11 @@ "deprecationReason": null }, { - "name": "ChatId", + "name": "ImageLinked", "description": "", "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", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -60522,67 +66088,92 @@ "defaultValue": null }, { - "name": "provider", + "name": "timestamps", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "isAtomistBot", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ImageLinkedOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "isOwner", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isAdmin", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ImageLinked", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Release", + "description": "", + "args": [ { - "name": "isBot", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -60592,49 +66183,31 @@ "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", + "name": "timestamp", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "userIds", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "providers", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -60648,7 +66221,7 @@ "defaultValue": null }, { - "name": "timezoneLabels", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -60669,7 +66242,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatIdOrdering", + "name": "_ReleaseOrdering", "ofType": null } }, @@ -60711,7 +66284,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatId", + "name": "Release", "ofType": null } }, @@ -60719,21 +66292,11 @@ "deprecationReason": null }, { - "name": "ChatChannel", + "name": "HerokuApp", "description": "", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "app", "description": "", "type": { "kind": "SCALAR", @@ -60743,7 +66306,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -60753,7 +66316,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -60763,7 +66326,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "user", "description": "", "type": { "kind": "SCALAR", @@ -60773,51 +66336,55 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "appId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "release", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "apps", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", + "name": "urls", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -60831,7 +66398,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "users", "description": "", "type": { "kind": "LIST", @@ -60845,7 +66412,7 @@ "defaultValue": null }, { - "name": "normalizedNames", + "name": "appIds", "description": "", "type": { "kind": "LIST", @@ -60859,7 +66426,7 @@ "defaultValue": null }, { - "name": "channelIds", + "name": "releases", "description": "", "type": { "kind": "LIST", @@ -60880,7 +66447,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatChannelOrdering", + "name": "_HerokuAppOrdering", "ofType": null } }, @@ -60922,7 +66489,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "HerokuApp", "ofType": null } }, @@ -60930,7 +66497,7 @@ "deprecationReason": null }, { - "name": "PullRequest", + "name": "Application", "description": "", "args": [ { @@ -60943,46 +66510,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": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "state", "description": "", @@ -60994,57 +66521,7 @@ "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", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -61054,7 +66531,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -61064,7 +66541,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -61074,7 +66551,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -61083,26 +66560,6 @@ }, "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", "description": "", @@ -61118,21 +66575,21 @@ "defaultValue": null }, { - "name": "numbers", + "name": "states", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "prIds", + "name": "hosts", "description": "", "type": { "kind": "LIST", @@ -61146,7 +66603,7 @@ "defaultValue": null }, { - "name": "names", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -61160,7 +66617,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "domains", "description": "", "type": { "kind": "LIST", @@ -61174,7 +66631,7 @@ "defaultValue": null }, { - "name": "states", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -61188,77 +66645,118 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_ApplicationOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "baseBranchNames", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "branchNames", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "titles", + "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": "Application", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Team", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "createdAts", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "updatedAts", + "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 + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", @@ -61272,7 +66770,7 @@ "defaultValue": null }, { - "name": "closedAts", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -61286,7 +66784,7 @@ "defaultValue": null }, { - "name": "mergedAts", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -61300,28 +66798,28 @@ "defaultValue": null }, { - "name": "mergeStatuss", + "name": "iconUrls", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "actions", + "name": "createdAts", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "PullRequestAction", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -61335,7 +66833,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_TeamOrdering", "ofType": null } }, @@ -61370,16 +66868,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_PullRequestFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -61387,7 +66875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "Team", "ofType": null } }, @@ -61395,7 +66883,7 @@ "deprecationReason": null }, { - "name": "Org", + "name": "ChatTeam", "description": "", "args": [ { @@ -61409,7 +66897,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -61419,11 +66907,51 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "provider", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "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 @@ -61443,7 +66971,7 @@ "defaultValue": null }, { - "name": "owners", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -61457,14 +66985,56 @@ "defaultValue": null }, { - "name": "ownerTypes", + "name": "providers", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "domains", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "messageCounts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "emailDomains", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -61478,7 +67048,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "_ChatTeamOrdering", "ofType": null } }, @@ -61513,16 +67083,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_OrgFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -61530,7 +67090,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Org", + "name": "ChatTeam", "ofType": null } }, @@ -61538,7 +67098,7 @@ "deprecationReason": null }, { - "name": "GitHubAppInstallation", + "name": "Person", "description": "", "args": [ { @@ -61552,7 +67112,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -61562,11 +67122,21 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "surname", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -61586,7 +67156,35 @@ "defaultValue": null }, { - "name": "owners", + "name": "forenames", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "surnames", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", "description": "", "type": { "kind": "LIST", @@ -61607,7 +67205,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubAppInstallationOrdering", + "name": "_PersonOrdering", "ofType": null } }, @@ -61649,7 +67247,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppInstallation", + "name": "Person", "ofType": null } }, @@ -61657,7 +67255,7 @@ "deprecationReason": null }, { - "name": "SCMId", + "name": "Status", "description": "", "args": [ { @@ -61671,7 +67269,17 @@ "defaultValue": null }, { - "name": "login", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "StatusState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -61681,7 +67289,7 @@ "defaultValue": null }, { - "name": "name", + "name": "targetUrl", "description": "", "type": { "kind": "SCALAR", @@ -61691,7 +67299,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "context", "description": "", "type": { "kind": "SCALAR", @@ -61701,7 +67309,45 @@ "defaultValue": null }, { - "name": "logins", + "name": "timestamp", + "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": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StatusState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -61715,7 +67361,7 @@ "defaultValue": null }, { - "name": "names", + "name": "targetUrls", "description": "", "type": { "kind": "LIST", @@ -61729,7 +67375,21 @@ "defaultValue": null }, { - "name": "avatars", + "name": "contexts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -61750,7 +67410,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_StatusOrdering", "ofType": null } }, @@ -61792,7 +67452,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "Status", "ofType": null } }, @@ -61800,26 +67460,30 @@ "deprecationReason": null }, { - "name": "GitHubAppResourceUser", + "name": "Email", "description": "", "args": [ { - "name": "id", + "name": "address", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "login", + "name": "addresss", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, @@ -61831,7 +67495,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubAppResourceUserOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -61873,7 +67537,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppResourceUser", + "name": "Email", "ofType": null } }, @@ -61881,7 +67545,7 @@ "deprecationReason": null }, { - "name": "GitHubId", + "name": "PushImpact", "description": "", "args": [ { @@ -61895,7 +67559,7 @@ "defaultValue": null }, { - "name": "login", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -61905,7 +67569,7 @@ "defaultValue": null }, { - "name": "name", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -61915,7 +67579,21 @@ "defaultValue": null }, { - "name": "logins", + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -61929,7 +67607,7 @@ "defaultValue": null }, { - "name": "names", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -61950,7 +67628,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubIdOrdering", + "name": "_PushImpactOrdering", "ofType": null } }, @@ -61992,7 +67670,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubId", + "name": "PushImpact", "ofType": null } }, @@ -62000,7 +67678,7 @@ "deprecationReason": null }, { - "name": "Tag", + "name": "PullRequestImpact", "description": "", "args": [ { @@ -62014,27 +67692,7 @@ "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", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -62044,7 +67702,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -62068,35 +67726,7 @@ "defaultValue": null }, { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "descriptions", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "refs", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -62110,7 +67740,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -62131,7 +67761,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_PullRequestImpactOrdering", "ofType": null } }, @@ -62173,99 +67803,19 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "PullRequestImpact", "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": "statusJSON", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + }, + { + "name": "ResourceProvider", + "description": "", + "args": [ { - "name": "state", + "name": "authProviderId", "description": "", "type": { "kind": "SCALAR", @@ -62275,47 +67825,51 @@ "defaultValue": null }, { - "name": "specsJSON", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "envJSON", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ResourceProviderOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "metadataJSON", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "resourceVersion", + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -62323,121 +67877,110 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubProvider", + "description": "", + "args": [ { - "name": "names", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "phases", + "name": "private", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null }, { - "name": "environments", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "providerId", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "baseNames", + "name": "apiUrl", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "namespaces", + "name": "gitUrl", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "statusJSONs", + "name": "providerType", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "ProviderType", + "ofType": null }, "defaultValue": null }, { - "name": "hosts", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "states", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -62451,7 +67994,7 @@ "defaultValue": null }, { - "name": "specsJSONs", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -62465,7 +68008,7 @@ "defaultValue": null }, { - "name": "envJSONs", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -62479,7 +68022,7 @@ "defaultValue": null }, { - "name": "metadataJSONs", + "name": "gitUrls", "description": "", "type": { "kind": "LIST", @@ -62493,14 +68036,14 @@ "defaultValue": null }, { - "name": "resourceVersions", + "name": "providerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, @@ -62514,7 +68057,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8PodOrdering", + "name": "_GitHubProviderOrdering", "ofType": null } }, @@ -62549,16 +68092,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "filter", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "_K8PodFilter", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -62566,7 +68099,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Pod", + "name": "GitHubProvider", "ofType": null } }, @@ -62574,21 +68107,11 @@ "deprecationReason": null }, { - "name": "K8Container", + "name": "SCMProvider", "description": "", "args": [ { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", + "name": "authProviderId", "description": "", "type": { "kind": "SCALAR", @@ -62598,27 +68121,27 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "environment", + "name": "private", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "containerJSON", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -62628,7 +68151,7 @@ "defaultValue": null }, { - "name": "state", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -62638,7 +68161,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -62648,27 +68171,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": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -62678,41 +68181,31 @@ "defaultValue": null }, { - "name": "resourceVersion", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", + "name": "providerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "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": "urls", "description": "", "type": { "kind": "LIST", @@ -62726,7 +68219,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -62740,7 +68233,7 @@ "defaultValue": null }, { - "name": "environments", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -62754,7 +68247,7 @@ "defaultValue": null }, { - "name": "containerJSONs", + "name": "gitUrls", "description": "", "type": { "kind": "LIST", @@ -62768,100 +68261,164 @@ "defaultValue": null }, { - "name": "states", + "name": "providerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, "defaultValue": null }, { - "name": "stateReasons", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_SCMProviderOrdering", "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": "SCMProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubAppResourceProvider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "containerIDs", + "name": "providerId", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_K8ContainerOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "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": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null }, "defaultValue": null }, @@ -62901,7 +68458,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Container", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -62909,11 +68466,21 @@ "deprecationReason": null }, { - "name": "DockerImage", + "name": "GenericResourceProvider", "description": "", "args": [ { - "name": "image", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -62923,7 +68490,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -62933,7 +68500,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "type", "description": "", "type": { "kind": "SCALAR", @@ -62943,58 +68510,89 @@ "defaultValue": null }, { - "name": "images", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "imageNames", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "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": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", - "ofType": null - } + "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": "BinaryRepositoryType", + "ofType": null }, "defaultValue": null }, @@ -63034,7 +68632,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerImage", + "name": "BinaryRepositoryProvider", "ofType": null } }, @@ -63042,28 +68640,28 @@ "deprecationReason": null }, { - "name": "ImageLinked", + "name": "UserJoinedChannel", "description": "", "args": [ { - "name": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -63077,7 +68675,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ImageLinkedOrdering", + "name": "_UserJoinedChannelOrdering", "ofType": null } }, @@ -63119,7 +68717,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ImageLinked", + "name": "UserJoinedChannel", "ofType": null } }, @@ -63127,7 +68725,7 @@ "deprecationReason": null }, { - "name": "Release", + "name": "Webhook", "description": "", "args": [ { @@ -63141,7 +68739,7 @@ "defaultValue": null }, { - "name": "name", + "name": "resourceProviderId", "description": "", "type": { "kind": "SCALAR", @@ -63149,13 +68747,30 @@ "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": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -63174,34 +68789,6 @@ }, "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": "", @@ -63210,7 +68797,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ReleaseOrdering", + "name": "_ChannelLinkOrdering", "ofType": null } }, @@ -63252,7 +68839,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Release", + "name": "ChannelLink", "ofType": null } }, @@ -63260,21 +68847,21 @@ "deprecationReason": null }, { - "name": "HerokuApp", + "name": "Review", "description": "", "args": [ { - "name": "app", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -63284,7 +68871,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "reviewId", "description": "", "type": { "kind": "SCALAR", @@ -63294,7 +68881,7 @@ "defaultValue": null }, { - "name": "user", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -63304,7 +68891,17 @@ "defaultValue": null }, { - "name": "appId", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submittedAt", "description": "", "type": { "kind": "SCALAR", @@ -63314,7 +68911,7 @@ "defaultValue": null }, { - "name": "release", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -63324,21 +68921,21 @@ "defaultValue": null }, { - "name": "apps", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "urls", + "name": "gitHubIds", "description": "", "type": { "kind": "LIST", @@ -63352,7 +68949,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "reviewIds", "description": "", "type": { "kind": "LIST", @@ -63366,7 +68963,7 @@ "defaultValue": null }, { - "name": "users", + "name": "bodys", "description": "", "type": { "kind": "LIST", @@ -63380,7 +68977,21 @@ "defaultValue": null }, { - "name": "appIds", + "name": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "submittedAts", "description": "", "type": { "kind": "LIST", @@ -63394,7 +69005,7 @@ "defaultValue": null }, { - "name": "releases", + "name": "htmlUrls", "description": "", "type": { "kind": "LIST", @@ -63415,7 +69026,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_HerokuAppOrdering", + "name": "_ReviewOrdering", "ofType": null } }, @@ -63457,7 +69068,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "HerokuApp", + "name": "Review", "ofType": null } }, @@ -63465,41 +69076,58 @@ "deprecationReason": null }, { - "name": "Application", + "name": "GenericResourceUser", "description": "", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "host", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "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": "timestamp", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -63509,125 +69137,131 @@ "defaultValue": null }, { - "name": "domain", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "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": "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": "_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": "OBJECT", + "name": "SystemAccount", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "KubernetesClusterProvider", + "description": "", + "args": [ { - "name": "hosts", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "domains", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "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": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -63635,19 +69269,36 @@ "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": "first", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "_id", "description": "", "type": { "kind": "SCALAR", @@ -63661,8 +69312,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Application", + "kind": "INTERFACE", + "name": "Credential", "ofType": null } }, @@ -63670,7 +69321,7 @@ "deprecationReason": null }, { - "name": "Team", + "name": "OAuthToken", "description": "", "args": [ { @@ -63678,161 +69329,223 @@ "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "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": "description", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "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": "Password", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CommitFingerprintImpact", + "description": "", + "args": [ { - "name": "createdAt", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "name": "type", "description": "", "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": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitFingerprintImpact", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtmJob", + "description": "Return AtmJobs", + "args": [ { - "name": "names", - "description": "", + "name": "id", + "description": "The id of the AtmJob to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "descriptions", - "description": "", + "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": "iconUrls", - "description": "", + "name": "owner", + "description": "The owner 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": "createdAts", - "description": "", + "name": "state", + "description": "The state of AtmJobs to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "AtmJobState", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtmJobTask", + "description": "Return AtmJobTasks", + "args": [ + { + "name": "id", + "description": "The id of the AtmJobTask to match", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "jobId", + "description": "The jobId of the AtmJobTask to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_TeamOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "name", + "description": "The name of AtmJobsTasks to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "owner", + "description": "The owner of the parent AtmJob", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "state", + "description": "The state of AtmJobTasks to match", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "AtmJobTaskState", "ofType": null }, "defaultValue": null @@ -63842,30 +69555,34 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ChatTeam", + "name": "AtomistLog", "description": "", "args": [ { - "name": "id", + "name": "_after", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "_before", "description": "", "type": { "kind": "SCALAR", @@ -63875,27 +69592,27 @@ "defaultValue": null }, { - "name": "provider", + "name": "_first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "tenantId", + "name": "_offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "domain", + "name": "_orderBy", "description": "", "type": { "kind": "SCALAR", @@ -63905,17 +69622,17 @@ "defaultValue": null }, { - "name": "messageCount", + "name": "_ordering", "description": "", "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "ENUM", + "name": "_AtomistLogOrdering", "ofType": null }, "defaultValue": null }, { - "name": "emailDomain", + "name": "_search", "description": "", "type": { "kind": "SCALAR", @@ -63925,78 +69642,164 @@ "defaultValue": null }, { - "name": "ids", + "name": "category", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, "defaultValue": null }, { - "name": "names", + "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": "providers", + "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": "domains", + "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": "messageCounts", + "name": "timestamp", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "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": "CommitIssueRelationship", + "description": "Auto-generated subscription for CommitIssueRelationship", + "args": [ + { + "name": "type", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitIssueRelationship", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Deployment", + "description": "Auto-generated subscription for Deployment", + "args": [ { - "name": "emailDomains", - "description": "", + "name": "environment", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64009,46 +69812,75 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ChatTeamOrdering", + "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": "_id", - "description": "", + "name": "relationshipId", + "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": "", + "name": "state", + "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": "type", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -64058,7 +69890,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatTeam", + "name": "IssueRelationship", "ofType": null } }, @@ -64066,66 +69898,68 @@ "deprecationReason": null }, { - "name": "Person", - "description": "", + "name": "SdmGoal", + "description": "Auto-generated subscription for SdmGoal", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "forename", - "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": "surname", - "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": "name", - "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 }, { - "name": "ids", - "description": "", + "name": "description", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "forenames", - "description": "", + "name": "environment", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64138,8 +69972,8 @@ "defaultValue": null }, { - "name": "surnames", - "description": "", + "name": "error", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64152,8 +69986,8 @@ "defaultValue": null }, { - "name": "names", - "description": "", + "name": "externalKey", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64166,185 +70000,190 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "externalUrl", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_PersonOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "goalSet", + "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": "", + "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": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Person", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": "", - "args": [ - { - "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": "state", - "description": "", + "name": "parameters", + "description": null, "type": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", - "description": "", + "name": "phase", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "targetUrl", - "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": "context", - "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": "timestamp", - "description": "", + "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": "ids", - "description": "", + "name": "sha", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "states", - "description": "", + "name": "signature", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "descriptions", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalState", "ofType": null } }, "defaultValue": null }, { - "name": "targetUrls", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "contexts", - "description": "", + "name": "uniqueName", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64357,8 +70196,8 @@ "defaultValue": null }, { - "name": "timestamps", - "description": "", + "name": "url", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64371,48 +70210,18 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "version", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", + "kind": "SCALAR", + "name": "Int", "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": { @@ -64420,7 +70229,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "SdmGoal", "ofType": null } }, @@ -64428,22 +70237,26 @@ "deprecationReason": null }, { - "name": "Email", - "description": "", + "name": "SdmGoalSet", + "description": "Auto-generated subscription for SdmGoalSet", "args": [ { - "name": "address", - "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": "addresss", - "description": "", + "name": "goalSet", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64456,46 +70269,58 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "goalSetId", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "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": "first", - "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 }, { - "name": "offset", - "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 } @@ -64505,7 +70330,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "SdmGoalSet", "ofType": null } }, @@ -64513,70 +70338,40 @@ "deprecationReason": null }, { - "name": "PushImpact", - "description": "", + "name": "SdmGoalDisplay", + "description": "Auto-generated subscription for SdmGoalDisplay", "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": "data", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ids", - "description": "", + "name": "branch", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "urls", - "description": "", + "name": "format", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", "ofType": null } }, "defaultValue": null }, { - "name": "datas", - "description": "", + "name": "sha", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64589,46 +70384,30 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "_PushImpactOrdering", + "name": "SdmGoalDisplayState", "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": "", + "name": "ts", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null } @@ -64638,7 +70417,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PushImpact", + "name": "SdmGoalDisplay", "ofType": null } }, @@ -64646,56 +70425,57 @@ "deprecationReason": null }, { - "name": "PullRequestImpact", - "description": "", + "name": "SdmBuildIdentifier", + "description": "Auto-generated subscription for SdmBuildIdentifier", "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": "data", - "description": "", + "name": "identifier", + "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": "SdmBuildIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmDeployEnablement", + "description": "Auto-generated subscription for SdmDeployEnablement", + "args": [ { - "name": "ids", - "description": "", + "name": "owner", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "urls", - "description": "", + "name": "providerId", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64708,8 +70488,8 @@ "defaultValue": null }, { - "name": "datas", - "description": "", + "name": "repo", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64722,48 +70502,18 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestImpactOrdering", + "name": "SdmDeployState", "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": { @@ -64771,7 +70521,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequestImpact", + "name": "SdmDeployEnablement", "ofType": null } }, @@ -64779,70 +70529,48 @@ "deprecationReason": null }, { - "name": "ResourceProvider", - "description": "", + "name": "SdmVersion", + "description": "Auto-generated subscription for SdmVersion", "args": [ { - "name": "authProviderId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", + "name": "branch", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ResourceProviderOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "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": "", + "name": "version", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -64851,8 +70579,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "OBJECT", + "name": "SdmVersion", "ofType": null } }, @@ -64860,96 +70588,57 @@ "deprecationReason": null }, { - "name": "GitHubProvider", - "description": "", + "name": "SdmGoalSetBadge", + "description": "Auto-generated subscription for SdmGoalSetBadge", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "private", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "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": "", + "name": "sdm", + "description": null, "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", - "description": "", + "name": "token", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalSetBadge", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmPreference", + "description": "Auto-generated subscription for SdmPreference", + "args": [ { - "name": "urls", - "description": "", + "name": "key", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64962,22 +70651,22 @@ "defaultValue": null }, { - "name": "providerIds", - "description": "", + "name": "ttl", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "apiUrls", - "description": "", + "name": "value", + "description": null, "type": { "kind": "LIST", "name": null, @@ -64988,10 +70677,43 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "gitUrls", - "description": "", + "name": "name", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65004,62 +70726,32 @@ "defaultValue": null }, { - "name": "providerTypes", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "type", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_GitHubProviderOrdering", + "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": { @@ -65067,7 +70759,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubProvider", + "name": "PolicyLog", "ofType": null } }, @@ -65075,106 +70767,26 @@ "deprecationReason": null }, { - "name": "SCMProvider", - "description": "", + "name": "PolicyCompliance", + "description": "Auto-generated subscription for PolicyCompliance", "args": [ { - "name": "authProviderId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "private", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "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": "ids", - "description": "", + "name": "_branch", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "urls", - "description": "", + "name": "_owner", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65187,8 +70799,8 @@ "defaultValue": null }, { - "name": "providerIds", - "description": "", + "name": "_repo", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65201,8 +70813,8 @@ "defaultValue": null }, { - "name": "apiUrls", - "description": "", + "name": "_sha", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65215,8 +70827,8 @@ "defaultValue": null }, { - "name": "gitUrls", - "description": "", + "name": "owner", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65229,62 +70841,32 @@ "defaultValue": null }, { - "name": "providerTypes", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "ProviderType", + "name": "PolicyCompliaceState", "ofType": null } }, "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", + "kind": "SCALAR", + "name": "Int", "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": { @@ -65292,7 +70874,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "PolicyCompliance", "ofType": null } }, @@ -65300,36 +70882,20 @@ "deprecationReason": null }, { - "name": "GitHubAppResourceProvider", - "description": "", + "name": "PolicyTargetStream", + "description": "Auto-generated subscription for PolicyTargetStream", "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 - }, - { - "name": "_id", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -65339,7 +70905,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubAppResourceProvider", + "name": "PolicyTargetStream", "ofType": null } }, @@ -65347,76 +70913,104 @@ "deprecationReason": null }, { - "name": "DockerRegistryProvider", - "description": "", + "name": "PolicyTarget", + "description": "Auto-generated subscription for PolicyTarget", "args": [ { - "name": "id", - "description": "", + "name": "data", + "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": "displayName", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "displayValue", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "ENUM", - "name": "DockerRegistryType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "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": "first", - "description": "", + "name": "streams", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "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 } @@ -65426,7 +71020,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "PolicyTarget", "ofType": null } }, @@ -65434,163 +71028,146 @@ "deprecationReason": null }, { - "name": "GenericResourceProvider", - "description": "", + "name": "SkillOutput", + "description": "Auto-generated subscription for SkillOutput", "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": "", + "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": "_id", - "description": "", + "name": "_owner", + "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": "", + "name": "_repo", + "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": "GenericResourceProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BinaryRepositoryProvider", - "description": "", - "args": [ - { - "name": "id", - "description": "", + "name": "_sha", + "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": "classifier", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "correlationId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "type", - "description": "", + "name": "orgParentId", + "description": null, "type": { - "kind": "ENUM", - "name": "BinaryRepositoryType", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "repoParentId", + "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": "", + "name": "type", + "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": "uri", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -65600,7 +71177,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "BinaryRepositoryProvider", + "name": "SkillOutput", "ofType": null } }, @@ -65608,74 +71185,90 @@ "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 } @@ -65685,7 +71278,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UserJoinedChannel", + "name": "Card", "ofType": null } }, @@ -65693,97 +71286,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": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "SCALAR", "name": "Int", @@ -65792,12 +71354,16 @@ "defaultValue": null }, { - "name": "offset", - "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 } @@ -65807,7 +71373,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChannelLink", + "name": "Notification", "ofType": null } }, @@ -65815,96 +71381,82 @@ "deprecationReason": null }, { - "name": "Review", - "description": "", + "name": "AspectRegistration", + "description": "Auto-generated subscription for AspectRegistration", "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": "", + "name": "category", + "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": "", + "name": "description", + "description": null, "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "submittedAt", - "description": "", + "name": "displayName", + "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": "endpoint", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", - "description": "", + "name": "manageable", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "gitHubIds", - "description": "", + "name": "name", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65917,8 +71469,8 @@ "defaultValue": null }, { - "name": "reviewIds", - "description": "", + "name": "owner", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65931,8 +71483,8 @@ "defaultValue": null }, { - "name": "bodys", - "description": "", + "name": "shortName", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65945,22 +71497,22 @@ "defaultValue": null }, { - "name": "states", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "ReviewState", + "name": "AspectRegistrationState", "ofType": null } }, "defaultValue": null }, { - "name": "submittedAts", - "description": "", + "name": "unit", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65973,8 +71525,8 @@ "defaultValue": null }, { - "name": "htmlUrls", - "description": "", + "name": "url", + "description": null, "type": { "kind": "LIST", "name": null, @@ -65987,56 +71539,195 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "uuid", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AspectRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "RepoOnboarded", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RepoOnboarded", + "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": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", "ofType": null } - }, - "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 + } } - ], + }, + "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": "Review", + "kind": "ENUM", + "name": "__TypeKind", "ofType": null } }, @@ -66044,207 +71735,350 @@ "deprecationReason": null }, { - "name": "GenericResourceUser", - "description": "", + "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": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", + "name": "includeDeprecated", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GenericResourceUser", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ResourceUser", - "description": "", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", "ofType": null - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SystemAccount", - "description": "", + "name": "enumValues", + "description": null, "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", + "name": "includeDeprecated", + "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SystemAccount", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "KubernetesClusterProvider", - "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": "_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", + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", "ofType": null - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -66252,73 +72086,27 @@ "deprecationReason": null }, { - "name": "Credential", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "description", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "OAuthToken", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "type", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "OAuthToken", + "name": "__Type", "ofType": null } }, @@ -66326,36 +72114,38 @@ "deprecationReason": null }, { - "name": "Password", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "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": "Password", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -66363,353 +72153,112 @@ "deprecationReason": null }, { - "name": "CommitFingerprintImpact", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "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": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommitFingerprintImpact", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "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": "name", - "description": "The name of AtmJobs to match", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "The owner of AtmJobs to match", - "type": { - "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 - } - ], + "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJob", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AtmJobTask", - "description": "Return AtmJobTasks", - "args": [ - { - "name": "id", - "description": "The id of the AtmJobTask to match", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "jobId", - "description": "The jobId of the AtmJobTask to match", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of AtmJobsTasks to match", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "The owner of the parent AtmJob", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "The state of AtmJobTasks to match", - "type": { - "kind": "ENUM", - "name": "AtmJobTaskState", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "description", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtmJobTask", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AtomistLog", - "description": "", - "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": "", - "type": { - "kind": "ENUM", - "name": "_AtomistLogOrdering", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_search", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "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": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "level", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "message", - "description": "", - "type": { - "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": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -66721,7 +72270,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistLog", + "name": "__InputValue", "ofType": null } } @@ -66729,576 +72278,297 @@ }, "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": "CommitIssueRelationship", - "description": "Auto-generated subscription for CommitIssueRelationship", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CommitIssueRelationship", - "ofType": null - } - }, + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", "isDeprecated": false, "deprecationReason": null }, { - "name": "Deployment", - "description": "Auto-generated subscription for Deployment", - "args": [ - { - "name": "environment", - "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 - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": null - } - }, + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", "isDeprecated": false, "deprecationReason": null }, { - "name": "IssueRelationship", - "description": "Auto-generated subscription for IssueRelationship", - "args": [ - { - "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": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "IssueRelationship", - "ofType": null - } - }, + "name": "FIELD", + "description": "Location adjacent to a field.", "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmGoal", - "description": "Auto-generated subscription for SdmGoal", - "args": [ - { - "name": "approvalRequired", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "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": "environment", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "error", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "externalKey", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "externalUrl", - "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": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "parameters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "phase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "preApprovalRequired", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "registration", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": 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 + "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": "NON_NULL", + "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": "SdmGoal", + "kind": "SCALAR", + "name": "String", "ofType": null } }, + "defaultValue": null + } + ], + "interfaces": null, + "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": "SdmGoalSet", - "description": "Auto-generated subscription for SdmGoalSet", - "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 + "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": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "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": "AtomistSkillBooleanParameterValue", + "description": "", + "fields": [ + { + "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": "SdmGoalSet", + "name": "AtomistSkillBooleanParameterSpec", "ofType": null } }, @@ -67306,86 +72576,167 @@ "deprecationReason": null }, { - "name": "SdmGoalDisplay", - "description": "Auto-generated subscription for SdmGoalDisplay", - "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 + "name": "value", + "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": "AtomistSkillParameterValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillChoice", + "description": "", + "fields": [ + { + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "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": "OBJECT", + "name": "AtomistSkillFloatParameterSpec", + "description": "", + "fields": [ + { + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "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": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maximum", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minimum", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoalDisplay", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -67393,103 +72744,48 @@ "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": "required", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmBuildIdentifier", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "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": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmDeployState", - "ofType": null - } - }, - "defaultValue": null - } - ], + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillFloatParameterValue", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -67497,58 +72793,15 @@ "deprecationReason": null }, { - "name": "SdmVersion", - "description": "Auto-generated subscription for SdmVersion", - "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", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "spec", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmVersion", + "name": "AtomistSkillFloatParameterSpec", "ofType": null } }, @@ -67556,103 +72809,60 @@ "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": "value", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoalSetBadge", + "kind": "SCALAR", + "name": "Float", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillIntParameterSpec", + "description": "", + "fields": [ + { + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "SdmPreference", - "description": "Auto-generated subscription for SdmPreference", - "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", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "description", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmPreference", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -67660,335 +72870,100 @@ "deprecationReason": null }, { - "name": "SdmRepoProvenance", - "description": "Auto-generated subscription for SdmRepoProvenance", + "name": "displayName", + "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmRepoProvenance", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "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": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "maximum", + "description": "", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyLog", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "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": "minimum", + "description": "", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PolicyCompliance", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "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": "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": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PolicyTargetStream", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "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 - } - ], + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillIntParameterValue", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PolicyTarget", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -67996,100 +72971,15 @@ "deprecationReason": 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": "spec", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Card", + "name": "AtomistSkillIntParameterSpec", "ofType": null } }, @@ -68097,279 +72987,68 @@ "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": "value", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Notification", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "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 - } - ], + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillMultiChoiceParameterSpec", + "description": "", + "fields": [ + { + "name": "defaultValues", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AspectRegistration", + "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 } }, @@ -68377,15 +73056,87 @@ "deprecationReason": null }, { - "name": "RepoOnboarded", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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": "options", "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RepoOnboarded", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillChoice", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -68394,60 +73145,108 @@ } ], "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": "AtomistSkillMultiChoiceParameterValues", + "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": "AtomistSkillMultiChoiceParameterSpec", "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": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "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": "AtomistSkillRepoFilterInclusionParameterValue", + "description": "", "fields": [ { - "name": "types", - "description": "A list of all types supported by this server.", + "name": "excludes", + "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": "__Type", - "ofType": null - } + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterParameterValueDetail", + "ofType": null } } }, @@ -68455,48 +73254,71 @@ "deprecationReason": null }, { - "name": "queryType", - "description": "The type that query operations will be rooted at.", + "name": "includes", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", - "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": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "name": "ownerId", + "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": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "name": "providerId", + "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": "repoIds", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -68508,8 +73330,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Directive", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -68526,19 +73348,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": "AtomistSkillRepoFilterParameterValue", + "description": "", "fields": [ { - "name": "kind", - "description": null, + "name": "name", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -68546,20 +73368,73 @@ "deprecationReason": null }, { - "name": "name", - "description": null, + "name": "spec", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterSpec", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "value", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterInclusionParameterValue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistSkillRepoFilterSpec", + "description": "", + "fields": [ { "name": "description", - "description": null, + "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": "SCALAR", @@ -68570,212 +73445,223 @@ "deprecationReason": null }, { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "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 + } + ], + "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": "possibleTypes", - "description": null, + "name": "description", + "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": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], + "name": "displayName", + "description": "", + "args": [], "type": { - "kind": "LIST", - "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": "name", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ofType", - "description": null, + "name": "required", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "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 - }, + "kind": "OBJECT", + "name": "AtomistSkillScheduleParameterValue", + "description": "", + "fields": [ { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "name": "spec", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillScheduleParameterSpec", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LIST", - "description": "Indicates this type is a list. `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": [ { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null } ], + "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": "AtomistSkillSingleChoiceParameterSpec", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "defaultValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -68790,8 +73676,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -68802,48 +73688,44 @@ "deprecationReason": null }, { - "name": "args", - "description": null, + "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": "__InputValue", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "options", + "description": "", "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillChoice", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDeprecated", - "description": null, + "name": "required", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -68856,33 +73738,27 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "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": "AtomistSkillSingleChoiceParameterValue", + "description": "", "fields": [ { "name": "name", - "description": null, + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -68897,27 +73773,15 @@ "deprecationReason": null }, { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, + "name": "spec", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "AtomistSkillSingleChoiceParameterSpec", "ofType": null } }, @@ -68925,31 +73789,61 @@ "deprecationReason": null }, { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", + "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": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null + } + ], "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.", + "name": "AtomistSkillStringArrayParameterSpec", + "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", @@ -68964,8 +73858,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -68976,15 +73870,39 @@ "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": "Boolean", + "name": "String", "ofType": null } }, @@ -68992,8 +73910,8 @@ "deprecationReason": null }, { - "name": "deprecationReason", - "description": null, + "name": "pattern", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -69002,21 +73920,43 @@ }, "isDeprecated": false, "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": [], + "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": "AtomistSkillStringArrayParameterValue", + "description": "", "fields": [ { "name": "name", - "description": null, + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -69031,44 +73971,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": "AtomistSkillStringArrayParameterSpec", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", - "description": null, + "name": "value", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -69080,8 +74000,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__InputValue", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -69092,166 +74012,43 @@ } ], "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 - }, + "interfaces": [ { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "AtomistSkillArtifact", + "name": "AtomistSkillStringParameterSpec", "description": "", "fields": [ { - "name": "entryPoint", + "name": "defaultValue", "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 }, { - "name": "kind", + "name": "description", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillArtifactKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -69259,31 +74056,27 @@ "deprecationReason": null }, { - "name": "memory", + "name": "displayName", "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": "runtime", + "name": "name", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "AtomistSkillRuntime", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -69291,23 +74084,19 @@ "deprecationReason": null }, { - "name": "timeout", + "name": "pattern", "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": "url", + "name": "required", "description": "", "args": [], "type": { @@ -69315,7 +74104,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -69324,19 +74113,25 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterSpec", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "FingerprintsForCommitsInput", + "kind": "OBJECT", + "name": "AtomistSkillStringParameterValue", "description": "", - "fields": null, - "inputFields": [ + "fields": [ { - "name": "commitSha", + "name": "name", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -69346,11 +74141,29 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repoId", + "name": "spec", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistSkillStringParameterSpec", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", "description": "", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -69360,10 +74173,18 @@ "ofType": null } }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AtomistSkillParameterValue", + "ofType": null } ], - "interfaces": null, "enumValues": null, "possibleTypes": null }, diff --git a/lib/graphql/subscription/OnAnySkillOutput.graphql b/lib/graphql/subscription/OnAnySkillOutput.graphql new file mode 100644 index 00000000..0c7a3e4b --- /dev/null +++ b/lib/graphql/subscription/OnAnySkillOutput.graphql @@ -0,0 +1,14 @@ +subscription OnAnySkillOutput { + SkillOutput { + classifier + skill { + name + version + } + type + uri + push { + ...PushFields + } + } +} diff --git a/lib/handlers/events/delivery/goals/FulfillGoalOnRequested.ts b/lib/handlers/events/delivery/goals/FulfillGoalOnRequested.ts index 2bea3c80..8b1a0a30 100644 --- a/lib/handlers/events/delivery/goals/FulfillGoalOnRequested.ts +++ b/lib/handlers/events/delivery/goals/FulfillGoalOnRequested.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -45,6 +45,7 @@ import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/h import { formatDate } from "@atomist/sdm/lib/api-helper/misc/dateFormat"; import { serializeResult } from "@atomist/sdm/lib/api-helper/misc/result"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { ExecuteGoalResult } from "@atomist/sdm/lib/api/goal/ExecuteGoalResult"; import { GoalInvocation } from "@atomist/sdm/lib/api/goal/GoalInvocation"; import { SdmGoalEvent } from "@atomist/sdm/lib/api/goal/SdmGoalEvent"; @@ -143,6 +144,7 @@ export class FulfillGoalOnRequested 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/handlers/events/delivery/goals/VoteOnGoalApprovalRequest.ts b/lib/handlers/events/delivery/goals/VoteOnGoalApprovalRequest.ts index 05d6801a..2a6859b1 100644 --- a/lib/handlers/events/delivery/goals/VoteOnGoalApprovalRequest.ts +++ b/lib/handlers/events/delivery/goals/VoteOnGoalApprovalRequest.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -34,6 +34,7 @@ import { updateGoal } from "@atomist/sdm/lib/api-helper/goal/storeGoals"; import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { SdmGoalEvent } from "@atomist/sdm/lib/api/goal/SdmGoalEvent"; import { GoalImplementationMapper } from "@atomist/sdm/lib/api/goal/support/GoalImplementationMapper"; import { SoftwareDeliveryMachineConfiguration } from "@atomist/sdm/lib/api/machine/SoftwareDeliveryMachineOptions"; @@ -109,6 +110,7 @@ export class VoteOnGoalApprovalRequest implements HandleEvent v(garvi))); @@ -128,6 +130,7 @@ export class VoteOnGoalApprovalRequest implements HandleEvent l(inv))); diff --git a/lib/handlers/events/issue/NewIssueHandler.ts b/lib/handlers/events/issue/NewIssueHandler.ts index 0519f62a..51dd5bd5 100644 --- a/lib/handlers/events/issue/NewIssueHandler.ts +++ b/lib/handlers/events/issue/NewIssueHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -33,6 +33,7 @@ import { logger } from "@atomist/automation-client/lib/util/logger"; import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { NewIssueListener, NewIssueListenerInvocation, @@ -80,6 +81,7 @@ export class NewIssueHandler implements HandleEvent l(inv))); diff --git a/lib/handlers/events/issue/UpdatedIssueHandler.ts b/lib/handlers/events/issue/UpdatedIssueHandler.ts index 2cf3d83a..f53c80e5 100644 --- a/lib/handlers/events/issue/UpdatedIssueHandler.ts +++ b/lib/handlers/events/issue/UpdatedIssueHandler.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -33,6 +33,7 @@ import { logger } from "@atomist/automation-client/lib/util/logger"; import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { UpdatedIssueListener, UpdatedIssueListenerInvocation, @@ -80,6 +81,7 @@ export class UpdatedIssueHandler implements HandleEvent l(inv))); diff --git a/lib/handlers/events/repo/OnChannelLink.ts b/lib/handlers/events/repo/OnChannelLink.ts index 8dccaef0..a2f50a59 100644 --- a/lib/handlers/events/repo/OnChannelLink.ts +++ b/lib/handlers/events/repo/OnChannelLink.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -35,6 +35,7 @@ import { addressChannelsFor, } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { ChannelLinkListener, ChannelLinkListenerInvocation, @@ -86,6 +87,7 @@ export class OnChannelLink implements HandleEvent context.messageClient.addressChannels(msg, newlyLinkedChannelName, opts), + skill: createSkillContext(context), }; await Promise.all(this.listeners .map(l => l(invocation)), diff --git a/lib/handlers/events/repo/OnFirstPushToRepo.ts b/lib/handlers/events/repo/OnFirstPushToRepo.ts index 0a0ce5bb..46397e6e 100644 --- a/lib/handlers/events/repo/OnFirstPushToRepo.ts +++ b/lib/handlers/events/repo/OnFirstPushToRepo.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -37,6 +37,7 @@ import { AddressNoChannels, } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { PushListener, PushListenerInvocation, @@ -98,6 +99,7 @@ export class OnFirstPushToRepo credentials, project, push, + skill: createSkillContext(context), }; await Promise.all(this.actions .map(l => l(invocation)), diff --git a/lib/handlers/events/repo/OnPullRequest.ts b/lib/handlers/events/repo/OnPullRequest.ts index 94689fe1..4cbaa18c 100644 --- a/lib/handlers/events/repo/OnPullRequest.ts +++ b/lib/handlers/events/repo/OnPullRequest.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -32,6 +32,7 @@ import { import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { PullRequestListener, PullRequestListenerInvocation, @@ -85,6 +86,7 @@ export class OnPullRequest implements HandleEvent l(prli)), diff --git a/lib/handlers/events/repo/OnRepoCreation.ts b/lib/handlers/events/repo/OnRepoCreation.ts index 57ce5ea4..ebb09a8b 100644 --- a/lib/handlers/events/repo/OnRepoCreation.ts +++ b/lib/handlers/events/repo/OnRepoCreation.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -32,6 +32,7 @@ import { import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { AddressNoChannels } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { RepoCreationListener, RepoCreationListenerInvocation, @@ -73,6 +74,7 @@ export class OnRepoCreation implements HandleEvent a(invocation))); return Success; diff --git a/lib/handlers/events/repo/OnRepoOnboarded.ts b/lib/handlers/events/repo/OnRepoOnboarded.ts index efc69718..4d578399 100644 --- a/lib/handlers/events/repo/OnRepoOnboarded.ts +++ b/lib/handlers/events/repo/OnRepoOnboarded.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -36,6 +36,7 @@ import { addressChannelsFor, } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { ProjectListener, ProjectListenerInvocation, @@ -76,6 +77,7 @@ export class OnRepoOnboarded implements HandleEvent l(invocation)), diff --git a/lib/handlers/events/repo/OnTag.ts b/lib/handlers/events/repo/OnTag.ts index 78e02719..686e0272 100644 --- a/lib/handlers/events/repo/OnTag.ts +++ b/lib/handlers/events/repo/OnTag.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -32,6 +32,7 @@ import { import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { addressChannelsFor } from "@atomist/sdm/lib/api/context/addressChannels"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { TagListener, TagListenerInvocation, @@ -72,6 +73,7 @@ export class OnTag implements HandleEvent { context, tag, credentials, + skill: createSkillContext(context), }; await Promise.all(this.listeners.map(l => l(invocation))); return Success; diff --git a/lib/handlers/events/repo/OnUserJoiningChannel.ts b/lib/handlers/events/repo/OnUserJoiningChannel.ts index 062065a7..87766cca 100644 --- a/lib/handlers/events/repo/OnUserJoiningChannel.ts +++ b/lib/handlers/events/repo/OnUserJoiningChannel.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -31,6 +31,7 @@ import { } from "@atomist/automation-client/lib/HandlerResult"; import { resolveCredentialsPromise } from "@atomist/sdm/lib/api-helper/machine/handlerRegistrations"; import { PreferenceStoreFactory } from "@atomist/sdm/lib/api/context/preferenceStore"; +import { createSkillContext } from "@atomist/sdm/lib/api/context/skillContext"; import { UserJoiningChannelListener, UserJoiningChannelListenerInvocation, @@ -72,6 +73,7 @@ export class OnUserJoiningChannel implements HandleEvent new SetGoalsOnPush( - 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), + eventHandlers: [ + () => new SetGoalsOnPush( + 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), () => new SetGoalsOnGoal( + 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), + () => new SetGoalsOnSkillOutput( this.configuration.sdm.projectLoader, this.configuration.sdm.repoRefResolver, this.pushMapping, @@ -238,6 +251,7 @@ export class HandlerBasedSoftwareDeliveryMachine extends AbstractSoftwareDeliver configuration: Configuration & SoftwareDeliveryMachineConfiguration, goalSetters: Array) { super(name, configuration, goalSetters); + this.addGoalExecutionListener(SkillOutputGoalExecutionListener); } } diff --git a/lib/machine/configure.ts b/lib/machine/configure.ts index a6a8ee69..d64a56b5 100644 --- a/lib/machine/configure.ts +++ b/lib/machine/configure.ts @@ -30,7 +30,7 @@ import { import { GoalWithFulfillment } from "@atomist/sdm/lib/api/goal/GoalWithFulfillment"; import { PushListenerInvocation } from "@atomist/sdm/lib/api/listener/PushListener"; import { SoftwareDeliveryMachine } from "@atomist/sdm/lib/api/machine/SoftwareDeliveryMachine"; -import { notGoalTest } from "@atomist/sdm/lib/api/mapping/goalTest"; +import { notGoalOrOutputTest } from "@atomist/sdm/lib/api/mapping/goalTest"; import { PushTest } from "@atomist/sdm/lib/api/mapping/PushTest"; import { AnyPush } from "@atomist/sdm/lib/api/mapping/support/commonPushTests"; import { allSatisfied } from "@atomist/sdm/lib/api/mapping/support/pushTestUtils"; @@ -278,7 +278,6 @@ export async function invokeConfigurer(sdm: SoftwareDeliveryMachine, } } -// TODO CD fix the following function convertPushTest(test: PushTest | PushTest[]): PushTest { if (Array.isArray(test)) { const goalPushTests = test.filter(t => !!(t as any).pushTest); @@ -296,7 +295,7 @@ function wrapTest(test: PushTest): PushTest { if (!!(test as any).pushTest) { return test; } else { - return notGoalTest(test); + return notGoalOrOutputTest(test); } } diff --git a/lib/machine/yaml/mapPushTests.ts b/lib/machine/yaml/mapPushTests.ts index d263344e..68da79f3 100644 --- a/lib/machine/yaml/mapPushTests.ts +++ b/lib/machine/yaml/mapPushTests.ts @@ -18,6 +18,7 @@ import { hasCommit } from "@atomist/sdm/lib/api-helper/pushtest/commit"; import { isMaterialChange } from "@atomist/sdm/lib/api-helper/pushtest/materialChangeTest"; import { StatefulPushListenerInvocation } from "@atomist/sdm/lib/api/dsl/goalContribution"; import { isGoal } from "@atomist/sdm/lib/api/mapping/goalTest"; +import { isOutput } from "@atomist/sdm/lib/api/mapping/outputTest"; import { pushTest, PushTest, @@ -36,6 +37,7 @@ import { or, } from "@atomist/sdm/lib/api/mapping/support/pushTestUtils"; import * as changeCase from "change-case"; +import { isSkillConfigured } from "../../mapping/pushtest/isSkillConfigured"; import { SdmGoalState } from "../../typings/types"; import { toArray } from "../../util/misc/array"; import { camelCase } from "./util"; @@ -59,21 +61,21 @@ type CreatePushTest = (test: any, extensionTests: Record) => Promise; const HasFile: CreatePushTest = async test => { - if (test.hasFile) { + if (!!test.hasFile) { return hasFile(test.hasFile); } return undefined; }; const IsRepo: CreatePushTest = async test => { - if (test.isRepo) { + if (!!test.isRepo) { return isRepo(typeof test.isRepo === "string" ? new RegExp(test.isRepo) : test.isRepo); } return undefined; }; const IsBranch: CreatePushTest = async test => { - if (test.isBranch) { + if (!!test.isBranch) { return isBranch(typeof test.isBranch === "string" ? new RegExp(test.isBranch) : test.isBranch); } return undefined; @@ -86,21 +88,47 @@ const IsDefaultBranch: CreatePushTest = async test => { return undefined; }; +const IsSkillConfigured: CreatePushTest = async test => { + if (!!test.isSkillConfigured) { + const sc = test.isSkillConfigured; + return isSkillConfigured({ + hasCommit: sc.hasCommit, + hasFile: sc.hasFile, + isBranch: sc.isBranch, + isDefaultBranch: sc.isDefaultBranch, + }); + } + return undefined; +}; + const IsGoal: CreatePushTest = async (test, additionalTests, extensionTests) => { - if (!!test.isGoal) { + const onGoal = test.isGoal || test.onGoal; + if (!!onGoal) { return isGoal({ - name: getStringOrRegexp(test.isGoal.name), - state: test.isGoal.state || SdmGoalState.success, - pushTest: test.isGoal.test ? await mapTest(test.isGoal.test, additionalTests, extensionTests) : undefined, - output: getStringOrRegexp(test.isGoal.output), - data: getStringOrRegexp(test.isGoal.data), + name: getStringOrRegexp(onGoal.name), + state: onGoal.state || SdmGoalState.success, + pushTest: onGoal.test ? await mapTest(onGoal.test, additionalTests, extensionTests) : undefined, + output: getStringOrRegexp(onGoal.output), + data: getStringOrRegexp(onGoal.data), + }); + } + 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) { + if (!!test.isMaterialChange) { return isMaterialChange({ directories: toArray(test.isMaterialChange.directories), extensions: toArray(test.isMaterialChange.extensions), @@ -112,7 +140,7 @@ const IsMaterialChange: CreatePushTest = async test => { }; const HasFileContaining: CreatePushTest = async test => { - if (test.hasFileContaining) { + if (!!test.hasFileContaining) { if (!test.hasFileContaining.content) { throw new Error("Push test 'hasFileContaining' can't be used without 'content' property"); } @@ -124,7 +152,7 @@ const HasFileContaining: CreatePushTest = async test => { }; const HasResourceProvider: CreatePushTest = async test => { - if (test.hasResourceProvider) { + if (!!test.hasResourceProvider) { if (!test.hasResourceProvider.type) { throw new Error("Push test 'hasResourceProvider' can't be used without 'type' property"); } @@ -134,28 +162,28 @@ const HasResourceProvider: CreatePushTest = async test => { }; const HasCommit: CreatePushTest = async test => { - if (test.hasCommit) { + if (!!test.hasCommit) { return hasCommit(typeof test.hasCommit === "string" ? new RegExp(test.hasCommit) : test.hasCommit); } return undefined; }; const Not: CreatePushTest = async (test, additionalTests, extensionTests) => { - if (test.not) { + if (!!test.not) { return not(await mapTest(test.not, additionalTests, extensionTests)); } return undefined; }; const And: CreatePushTest = async (test, additionalTests, extensionTests) => { - if (test.and) { + if (!!test.and) { return and(...toArray(await mapTests(test.and, additionalTests, extensionTests))); } return undefined; }; const Or: CreatePushTest = async (test, additionalTests, extensionTests) => { - if (test.or) { + if (!!test.or) { return or(...toArray(await mapTests(test.or, additionalTests, extensionTests))); } return undefined; @@ -195,6 +223,8 @@ export const CreatePushTests = [ IsBranch, IsDefaultBranch, IsGoal, + IsOutput, + IsSkillConfigured, IsMaterialChange, HasFileContaining, HasResourceProvider, diff --git a/lib/machine/yaml/resolvePlaceholder.ts b/lib/machine/yaml/resolvePlaceholder.ts index db966f5b..b619ca7c 100644 --- a/lib/machine/yaml/resolvePlaceholder.ts +++ b/lib/machine/yaml/resolvePlaceholder.ts @@ -25,17 +25,14 @@ import { camelCase } from "./util"; // tslint:disable-next-line:cyclomatic-complexity export async function resolvePlaceholder(value: string, goal: SdmGoalEvent, - ctx: Pick, + ctx: Pick, parameters: Record, raiseError: boolean = true): Promise { - const placeholderExpression = /\$\{([!.a-zA-Z_-]+)([.:0-9a-zA-Z-_ \" ]+)*\}/g; + const placeholderExpression = /\$\{([!.a-zA-Z_-]+)([.:0-9a-zA-Z-_ \" ]*)\}/g; if (!placeholderExpression.test(value)) { return value; } - const skillConfiguration = {}; - ((ctx.context as any)?.trigger?.configuration?.parameters || []).forEach(p => skillConfiguration[p.name] = p.value); - placeholderExpression.lastIndex = 0; let currentValue = value; let result: RegExpExecArray; @@ -51,8 +48,8 @@ export async function resolvePlaceholder(value: string, _.get(ctx.context, camelCase(placeholder)) || _.get({ parameters }, placeholder) || _.get({ parameters }, camelCase(placeholder)) || - _.get({ skill: { configuration: skillConfiguration } }, placeholder) || - _.get({ skill: { configuration: skillConfiguration } }, camelCase(placeholder)); + _.get({ skill: ctx.skill }, placeholder) || + _.get({ skill: ctx.skill}, camelCase(placeholder)); if (placeholder === "home") { envValue = os.userInfo().homedir; diff --git a/lib/mapping/pushtest/isSkillConfigured.ts b/lib/mapping/pushtest/isSkillConfigured.ts new file mode 100644 index 00000000..79a61d6c --- /dev/null +++ b/lib/mapping/pushtest/isSkillConfigured.ts @@ -0,0 +1,85 @@ +/* + * 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 { hasCommit } from "@atomist/sdm/lib/api-helper/pushtest/commit"; +import { + pushTest, + PushTest, +} from "@atomist/sdm/lib/api/mapping/PushTest"; +import { + hasFile, + isBranch, + ToDefaultBranch, +} from "@atomist/sdm/lib/api/mapping/support/commonPushTests"; + +const DefaultSkillConfigurationKeys: SkillConfiguredOptions = { + hasCommit: "hasCommit", + hasFile: "hasFile", + isBranch: "isBranch", + isDefaultBranch: "isDefaultBranch", +}; + +export interface SkillConfiguredOptions { + hasCommit?: string; + hasFile?: string; + isBranch?: string; + isDefaultBranch?: string; +} + +/** + * Push test that tests against some well-known pushTests based on skill + * configuration + */ +export function isSkillConfigured(keys?: SkillConfiguredOptions): PushTest { + + const keysToUse = { + ...DefaultSkillConfigurationKeys, + ...keys, + }; + + return pushTest("is skill configured", async pli => { + + const skillConfiguration = pli.skill?.configuration?.parameters || {}; + + if (!!skillConfiguration[keysToUse.hasFile]) { + if (!(await hasFile(skillConfiguration[keysToUse.hasFile]).mapping(pli))) { + return false; + } + } + + if (!!skillConfiguration[keysToUse.isBranch]) { + const branchRegExp = new RegExp(skillConfiguration[keysToUse.isBranch]); + if (!(await isBranch(branchRegExp).mapping(pli))) { + return false; + } + } + + if (!!skillConfiguration[keysToUse.isDefaultBranch]) { + if (!(await ToDefaultBranch.mapping(pli))) { + return false; + } + } + + if (!!skillConfiguration[keysToUse.hasCommit]) { + const commitRegExp = new RegExp(skillConfiguration[keysToUse.hasCommit]); + if (!(await hasCommit(commitRegExp).mapping(pli))) { + return false; + } + } + + return true; + }); +} diff --git a/lib/pack/gcp/cache.ts b/lib/pack/gcp/cache.ts index ee65da8d..d35040e6 100644 --- a/lib/pack/gcp/cache.ts +++ b/lib/pack/gcp/cache.ts @@ -53,8 +53,8 @@ export type CacheConfig = Required { - await this.gcs(gi, classifier, async (storage, bucket, cachePath) => storage.bucket(bucket).upload(archivePath, { + public async store(gi: GoalInvocation, classifier: string, archivePath: string): Promise { + return this.gcs(gi, classifier, async (storage, bucket, cachePath) => storage.bucket(bucket).upload(archivePath, { destination: cachePath, resumable: false, // avoid https://github.com/googleapis/nodejs-storage/issues/909 }), "store"); @@ -70,7 +70,7 @@ export class GoogleCloudStorageGoalCacheArchiveStore implements GoalCacheArchive }), "retrieve"); } - private async gcs(gi: GoalInvocation, classifier: string, op: GcsOp, verb: string): Promise { + private async gcs(gi: GoalInvocation, classifier: string, op: GcsOp, verb: string): Promise { const cacheConfig = getCacheConfig(gi); const cachePath = getCachePath(cacheConfig, classifier); const storage = new Storage(); @@ -80,6 +80,7 @@ export class GoogleCloudStorageGoalCacheArchiveStore implements GoalCacheArchive gi.progressLog.write(`${gerund} cache archive ${objectUri}`); await doWithRetry(() => op(storage, cacheConfig.bucket, cachePath), `${verb} cache archive`); gi.progressLog.write(`${verb}d cache archive ${objectUri}`); + return objectUri; } catch (e) { e.message = `Failed to ${verb} cache archive ${objectUri}: ${e.message}`; gi.progressLog.write(e.message); @@ -87,14 +88,14 @@ export class GoogleCloudStorageGoalCacheArchiveStore implements GoalCacheArchive throw e; } } + return undefined; } } /** Construct object path for cache configuration and classifier. */ export function getCachePath(cacheConfig: CacheConfig, classifier: string = "default"): string { - const cachePath = [cacheConfig.path, classifier, "cache.tar.gz"].join("/"); - return cachePath; + return [cacheConfig.path, classifier, "cache.tar.gz"].join("/"); } /** diff --git a/lib/pack/gcp/index.ts b/lib/pack/gcp/index.ts index 60a8289e..766953b5 100644 --- a/lib/pack/gcp/index.ts +++ b/lib/pack/gcp/index.ts @@ -30,7 +30,7 @@ import { GoogleCloudStorageGoalCacheArchiveStore } from "./cache"; */ export function gcpSupport(options: { compression?: CompressionMethod } = {}): ExtensionPack { return { - ...metadata(), + ...metadata("gcp-caching"), configure: sdm => { _.defaultsDeep(sdm.configuration, { sdm: { diff --git a/package-lock.json b/package-lock.json index eb489a70..4cae3c9e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -239,9 +239,9 @@ } }, "@atomist/sdm": { - "version": "2.0.0-master.20200201162131", - "resolved": "https://registry.npmjs.org/@atomist/sdm/-/sdm-2.0.0-master.20200201162131.tgz", - "integrity": "sha512-PA2J6Fdb1un8mBES41mwRuIE4zm+is8QXSCFU7kR0G0amw4W1ki4yNnmuRPxod4gBp4pX2b1E/qHqazHmX0W/g==", + "version": "2.0.0-master.20200214123953", + "resolved": "https://registry.npmjs.org/@atomist/sdm/-/sdm-2.0.0-master.20200214123953.tgz", + "integrity": "sha512-4c0eG3JidPP8L1R4vwc2wr74x8rRbEbkDJsIjlGE3I5GSXyx5pzlf0g6ym3XzyVtea9XsLUAz6Amup+L6w93cw==", "dev": true, "requires": { "@types/cron": "^1.7.1", diff --git a/package.json b/package.json index 88f7070a..89a60301 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "dependencies": { "@google-cloud/storage": "^4.0.0", "@kubernetes/client-node": "^0.11.1", - "@types/fast-json-stable-stringify": "^2.0.0", + "@types/fast-json-stable-stringify": "2.0.0", "@types/flat": "0.0.28", "@types/fs-extra": "^8.0.0", "@types/json-stringify-safe": "^5.0.0", @@ -40,7 +40,7 @@ "chalk": "^2.4.2", "change-case": "^3.1.0", "fast-glob": "^3.1.0", - "fast-json-stable-stringify": "^2.0.0", + "fast-json-stable-stringify": "2.0.0", "flat": "^4.1.0", "fs-extra": "^8.1.0", "js-yaml": "^3.13.1", @@ -65,7 +65,7 @@ "devDependencies": { "@atomist/automation-client": "2.0.0-master.20200131202342", "@atomist/microgrammar": "^1.2.1", - "@atomist/sdm": "2.0.0-master.20200201162131", + "@atomist/sdm": "2.0.0-master.20200214123953", "@atomist/slack-messages": "^1.1.1", "@atomist/tree-path": "^1.0.3", "@types/mocha": "^5.2.7", diff --git a/test/goal/cache/CompressingGoalCache.test.ts b/test/goal/cache/CompressingGoalCache.test.ts index 918530e7..d167a83f 100644 --- a/test/goal/cache/CompressingGoalCache.test.ts +++ b/test/goal/cache/CompressingGoalCache.test.ts @@ -36,8 +36,6 @@ import { promisify } from "util"; import { CompressingGoalCache, CompressionMethod, - resolveClassifierPath, - sanitizeClassifier, } from "../../../lib/goal/cache/CompressingGoalCache"; import { FileSystemGoalCacheArchiveStore } from "../../../lib/goal/cache/FileSystemGoalCacheArchiveStore"; import { @@ -51,166 +49,6 @@ import { describe("goal/cache/CompressingGoalCache", () => { - describe("sanitizeClassifier", () => { - - it("should do nothing successfully", () => { - ["", "simple", "foo.bar", "foo..bar"].forEach(c => { - const s = sanitizeClassifier(c); - assert(s === c); - }); - }); - - it("should unhide paths", () => { - [ - { c: ".foo", e: "foo" }, - { c: "..foo", e: "foo" }, - { c: "._foo", e: "_foo" }, - { c: "./.", e: "_." }, - { c: "././.", e: "_._." }, - { c: "./.././", e: "_.._._" }, - { c: "..", e: "" }, - { c: "../../..", e: "_.._.." }, - { c: "../../../", e: "_.._.._" }, - { c: "../../../foo", e: "_.._.._foo" }, - ].forEach(ce => { - const s = sanitizeClassifier(ce.c); - assert(s === ce.e); - const b = ce.c.replace(/\//g, "\\"); - const t = sanitizeClassifier(b); - assert(t === ce.e); - }); - }); - - it("should replace invalid characters", () => { - [ - { c: "/", e: "_" }, - { c: "///", e: "___" }, - { c: "/foo", e: "_foo" }, - { c: "///foo", e: "___foo" }, - { c: "//foo//", e: "__foo__" }, - { c: "/../../../foo", e: "_.._.._.._foo" }, - { c: "_foo", e: "_foo" }, - { c: "__foo", e: "__foo" }, - { c: "foo.", e: "foo." }, - { c: "foo..", e: "foo.." }, - { c: "foo/", e: "foo_" }, - { c: "foo////", e: "foo____" }, - { c: "foo/..", e: "foo_.." }, - { c: "foo/.././..", e: "foo_.._._.." }, - { c: "foo/././././", e: "foo_._._._._" }, - { c: "foo/../../../..", e: "foo_.._.._.._.." }, - { c: "foo/../../../../", e: "foo_.._.._.._.._" }, - { c: "foo/./bar", e: "foo_._bar" }, - { c: "foo/././bar", e: "foo_._._bar" }, - { c: "foo/././././bar", e: "foo_._._._._bar" }, - { c: "foo/../bar", e: "foo_.._bar" }, - { c: "foo/../../bar", e: "foo_.._.._bar" }, - { c: "foo/../../../../bar", e: "foo_.._.._.._.._bar" }, - { c: "foo/./.././../bar", e: "foo_._.._._.._bar" }, - { c: "foo/.././.././bar", e: "foo_.._._.._._bar" }, - { c: "foo/..///.//../bar", e: "foo_..___.__.._bar" }, - { c: "foo/.././/.././bar/../././//..//./baz", e: "foo_.._.__.._._bar_.._._.___..__._baz" }, - { c: "foo/.../bar", e: "foo_..._bar" }, - { c: "foo/..../bar", e: "foo_...._bar" }, - { c: "foo/.bar", e: "foo_.bar" }, - { c: "foo/..bar", e: "foo_..bar" }, - { c: "foo/...bar", e: "foo_...bar" }, - { c: "foo/.bar/.baz", e: "foo_.bar_.baz" }, - { c: "foo/..bar/..baz", e: "foo_..bar_..baz" }, - { c: "foo/.../bar/.../baz", e: "foo_..._bar_..._baz" }, - { c: "foo/....bar.baz", e: "foo_....bar.baz" }, - { c: "foo/.../.bar.baz", e: "foo_..._.bar.baz" }, - { c: "foo/....bar.baz/.qux.", e: "foo_....bar.baz_.qux." }, - ].forEach(ce => { - const s = sanitizeClassifier(ce.c); - assert(s === ce.e); - const b = ce.c.replace(/\//g, "\\"); - const t = sanitizeClassifier(b); - assert(t === ce.e); - }); - }); - - it("should handle the diabolical", () => { - const c = "../.././...////....foo//.bar.baz/./..//...///...qux./quux...quuz/./../corge//...///./."; - const s = sanitizeClassifier(c); - const e = "_.._._...____....foo__.bar.baz_._..__...___...qux._quux...quuz_._.._corge__...___._."; - assert(s === e); - }); - - }); - - describe("resolveClassifierPath", () => { - - const gi: any = { - configuration: { - sdm: { - docker: { - registry: "kinks/bigsky", - }, - }, - }, - context: { - workspaceId: "TH3K1NK5", - }, - goalEvent: { - branch: "preservation/society", - repo: { - name: "village-green", - owner: "TheKinks", - providerId: "PyeReprise", - }, - sha: "9932791f7adfd854b576125b058e9eb45b3da8b9", - }, - }; - - it("should return the workspace ID", async () => { - for (const c of [undefined, ""]) { - const r = await resolveClassifierPath(c, gi); - assert(r === "TH3K1NK5"); - } - }); - - it("should prepend the workspace ID", async () => { - for (const c of ["simple", "foo.bar", "foo..bar"]) { - const r = await resolveClassifierPath(c, gi); - assert(r === `TH3K1NK5/${c}`); - } - }); - - it("should replace placeholders", async () => { - // tslint:disable-next-line:no-invalid-template-strings - const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${sha}_PhenomenalCat"; - const r = await resolveClassifierPath(c, gi); - const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_9932791f7adfd854b576125b058e9eb45b3da8b9_PhenomenalCat"; - assert(r === e); - }); - - it("should replace placeholders and provide defaults", async () => { - // tslint:disable-next-line:no-invalid-template-strings - const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${brunch:hunch}_PhenomenalCat"; - const r = await resolveClassifierPath(c, gi); - const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_hunch_PhenomenalCat"; - assert(r === e); - }); - - it("should replace nested placeholders", async () => { - // tslint:disable-next-line:no-invalid-template-strings - const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${brunch:${sha}}_PhenomenalCat"; - const r = await resolveClassifierPath(c, gi); - const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_9932791f7adfd854b576125b058e9eb45b3da8b9_PhenomenalCat"; - assert(r === e); - }); - - it("should replace and sanitize placeholders", async () => { - // tslint:disable-next-line:no-invalid-template-strings - const c = "star-struck_${sdm.docker.registry}_${repo.owner}_${repo.name}_${branch}_PhenomenalCat"; - const r = await resolveClassifierPath(c, gi); - const e = "TH3K1NK5/star-struck_kinks_bigsky_TheKinks_village-green_preservation_society_PhenomenalCat"; - assert(r === e); - }); - - }); - describe("CompressingGoalCache", () => { const testDirPrefix = path.join(os.tmpdir(), "sdm-core-test-"); diff --git a/test/goal/cache/goalCaching.test.ts b/test/goal/cache/goalCaching.test.ts index 80d74249..b6f8ef86 100644 --- a/test/goal/cache/goalCaching.test.ts +++ b/test/goal/cache/goalCaching.test.ts @@ -1,5 +1,5 @@ /* - * Copyright © 2019 Atomist, Inc. + * 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. @@ -36,6 +36,8 @@ import { cacheRestore, GoalCache, GoalCacheOptions, + resolveClassifierPath, + sanitizeClassifier, } from "../../../lib/goal/cache/goalCaching"; class TestGoalArtifactCache implements GoalCache { @@ -43,7 +45,7 @@ class TestGoalArtifactCache implements GoalCache { private cacheFiles: File[]; private classifier: string; - public async put(gi: GoalInvocation, project: Project, files: string[], classifier: string = "default"): Promise { + public async put(gi: GoalInvocation, project: Project, files: string[], classifier: string = "default"): Promise { this.id = gi.id; this.cacheFiles = await Promise.all(files.map(async f => project.getFile(f))); this.classifier = classifier; @@ -87,201 +89,368 @@ const ErrorProjectListenerRegistration: GoalProjectListenerRegistration = { }; describe("goalCaching", () => { - let project; - const testCache = new TestGoalArtifactCache(); - let fakePushId; - let fakeGoal; - - beforeEach(() => { - project = InMemoryProject.of({ path: "test.txt", content: "Test" }, { path: "dirtest/test.txt", content: "" }); - fakePushId = fakePush().id; - fakeGoal = fakeGoalInvocation(fakePushId); - fakeGoal.progressLog = new LoggingProgressLog("test", "debug"); - fakeGoal.configuration.sdm.cache = { - enabled: true, - store: testCache, - }; - }); - it("should cache and retrieve", async () => { - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: ErrorProjectListenerRegistration, - }; + describe("sanitizeClassifier", () => { - fakeGoal.goalEvent.data = JSON.stringify({ foo: "bar" }); - - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // it should find it in the cache - const emptyProject = InMemoryProject.of(); - assert(!await emptyProject.hasFile("test.txt")); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("test.txt")); - const data = JSON.parse(fakeGoal.goalEvent.data); - assert.deepStrictEqual(data["@atomist/sdm/input"], [{ classifier: "default" }]); - assert.deepStrictEqual(data["@atomist/sdm/output"], options.entries); - assert.deepStrictEqual(data.foo, "bar"); - }); + it("should do nothing successfully", () => { + ["", "simple", "foo.bar", "foo..bar"].forEach(c => { + const s = sanitizeClassifier(c); + assert(s === c); + }); + }); - it("should call fallback on cache miss", async () => { - // when cache something - const fallback: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test2.txt", "test"); - }, - }; - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: fallback, - }; - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // and clearing the cache - await cacheRemove(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // it should not find it in the cache and call fallback - const emptyProject = InMemoryProject.of(); - assert(!await emptyProject.hasFile("test2.txt")); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("test2.txt")); - }); + it("should unhide paths", () => { + [ + { c: ".foo", e: "foo" }, + { c: "..foo", e: "foo" }, + { c: "._foo", e: "_foo" }, + { c: "./.", e: "_." }, + { c: "././.", e: "_._." }, + { c: "./.././", e: "_.._._" }, + { c: "..", e: "" }, + { c: "../../..", e: "_.._.." }, + { c: "../../../", e: "_.._.._" }, + { c: "../../../foo", e: "_.._.._foo" }, + ].forEach(ce => { + const s = sanitizeClassifier(ce.c); + assert(s === ce.e); + const b = ce.c.replace(/\//g, "\\"); + const t = sanitizeClassifier(b); + assert(t === ce.e); + }); + }); - it("should call multiple fallbacks on cache miss", async () => { - // when cache something - const fallback: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test2.txt", "test"); - }, - }; - const fallback2: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - if (await p.hasFile("test2.txt")) { - await p.addFile("test3.txt", "test"); - } - }, - }; - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: [fallback, fallback2], - }; - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // and clearing the cache - await cacheRemove(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // it should not find it in the cache and call fallback - const emptyProject = InMemoryProject.of(); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("test2.txt")); - assert(await emptyProject.hasFile("test3.txt")); - }); + it("should replace invalid characters", () => { + [ + { c: "/", e: "_" }, + { c: "///", e: "___" }, + { c: "/foo", e: "_foo" }, + { c: "///foo", e: "___foo" }, + { c: "//foo//", e: "__foo__" }, + { c: "/../../../foo", e: "_.._.._.._foo" }, + { c: "_foo", e: "_foo" }, + { c: "__foo", e: "__foo" }, + { c: "foo.", e: "foo." }, + { c: "foo..", e: "foo.." }, + { c: "foo/", e: "foo_" }, + { c: "foo////", e: "foo____" }, + { c: "foo/..", e: "foo_.." }, + { c: "foo/.././..", e: "foo_.._._.." }, + { c: "foo/././././", e: "foo_._._._._" }, + { c: "foo/../../../..", e: "foo_.._.._.._.." }, + { c: "foo/../../../../", e: "foo_.._.._.._.._" }, + { c: "foo/./bar", e: "foo_._bar" }, + { c: "foo/././bar", e: "foo_._._bar" }, + { c: "foo/././././bar", e: "foo_._._._._bar" }, + { c: "foo/../bar", e: "foo_.._bar" }, + { c: "foo/../../bar", e: "foo_.._.._bar" }, + { c: "foo/../../../../bar", e: "foo_.._.._.._.._bar" }, + { c: "foo/./.././../bar", e: "foo_._.._._.._bar" }, + { c: "foo/.././.././bar", e: "foo_.._._.._._bar" }, + { c: "foo/..///.//../bar", e: "foo_..___.__.._bar" }, + { c: "foo/.././/.././bar/../././//..//./baz", e: "foo_.._.__.._._bar_.._._.___..__._baz" }, + { c: "foo/.../bar", e: "foo_..._bar" }, + { c: "foo/..../bar", e: "foo_...._bar" }, + { c: "foo/.bar", e: "foo_.bar" }, + { c: "foo/..bar", e: "foo_..bar" }, + { c: "foo/...bar", e: "foo_...bar" }, + { c: "foo/.bar/.baz", e: "foo_.bar_.baz" }, + { c: "foo/..bar/..baz", e: "foo_..bar_..baz" }, + { c: "foo/.../bar/.../baz", e: "foo_..._bar_..._baz" }, + { c: "foo/....bar.baz", e: "foo_....bar.baz" }, + { c: "foo/.../.bar.baz", e: "foo_..._.bar.baz" }, + { c: "foo/....bar.baz/.qux.", e: "foo_....bar.baz_.qux." }, + ].forEach(ce => { + const s = sanitizeClassifier(ce.c); + assert(s === ce.e); + const b = ce.c.replace(/\//g, "\\"); + const t = sanitizeClassifier(b); + assert(t === ce.e); + }); + }); + + it("should handle the diabolical", () => { + const c = "../.././...////....foo//.bar.baz/./..//...///...qux./quux...quuz/./../corge//...///./."; + const s = sanitizeClassifier(c); + const e = "_.._._...____....foo__.bar.baz_._..__...___...qux._quux...quuz_._.._corge__...___._."; + assert(s === e); + }); - it("shouldn't call fallback with failing pushtest on cache miss", async () => { - // when cache something - const NoPushMatches = pushTest("never", async () => false); - const fallback: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test.txt", "test"); - }, - }; - const fallback2: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test2.txt", "test"); - }, - pushTest: NoPushMatches, - }; - const fallback3: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test3.txt", "test"); - }, - }; - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: [fallback, fallback2, fallback3], - }; - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // and clearing the cache - await cacheRemove(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // it should not find it in the cache and call fallback - const emptyProject = InMemoryProject.of(); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("test.txt")); - assert(!await emptyProject.hasFile("test2.txt")); - assert(await emptyProject.hasFile("test3.txt")); }); - it("shouldn't call fallback with wrong event on cache miss", async () => { - // when cache something - const NoPushMatches = pushTest("never", async () => false); - const fallback: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test.txt", "test"); + describe("resolveClassifierPath", () => { + + const gi: any = { + configuration: { + sdm: { + docker: { + registry: "kinks/bigsky", + }, + }, }, - }; - const fallback2: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test2.txt", "test"); + context: { + workspaceId: "TH3K1NK5", }, - pushTest: NoPushMatches, - }; - const fallback3: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("test3.txt", "test"); + goalEvent: { + branch: "preservation/society", + repo: { + name: "village-green", + owner: "TheKinks", + providerId: "PyeReprise", + }, + sha: "9932791f7adfd854b576125b058e9eb45b3da8b9", }, - events: [GoalProjectListenerEvent.after], }; - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: [fallback, fallback2, fallback3], - }; - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // and clearing the cache - await cacheRemove(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - // it should not find it in the cache and call fallback - const emptyProject = InMemoryProject.of(); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("test.txt")); - assert(!await emptyProject.hasFile("test2.txt")); - assert(!await emptyProject.hasFile("test3.txt")); + + it("should return the workspace ID", async () => { + for (const c of [undefined, ""]) { + const r = await resolveClassifierPath(c, gi); + assert(r === "TH3K1NK5"); + } + }); + + it("should prepend the workspace ID", async () => { + for (const c of ["simple", "foo.bar", "foo..bar"]) { + const r = await resolveClassifierPath(c, gi); + assert(r === `TH3K1NK5/${c}`); + } + }); + + it("should replace placeholders", async () => { + // tslint:disable-next-line:no-invalid-template-strings + const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${sha}_PhenomenalCat"; + const r = await resolveClassifierPath(c, gi); + const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_9932791f7adfd854b576125b058e9eb45b3da8b9_PhenomenalCat"; + assert(r === e); + }); + + it("should replace placeholders and provide defaults", async () => { + // tslint:disable-next-line:no-invalid-template-strings + const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${brunch:hunch}_PhenomenalCat"; + const r = await resolveClassifierPath(c, gi); + const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_hunch_PhenomenalCat"; + assert(r === e); + }); + + it("should replace nested placeholders", async () => { + // tslint:disable-next-line:no-invalid-template-strings + const c = "star-struck_${repo.providerId}_${repo.owner}_${repo.name}_${brunch:${sha}}_PhenomenalCat"; + const r = await resolveClassifierPath(c, gi); + const e = "TH3K1NK5/star-struck_PyeReprise_TheKinks_village-green_9932791f7adfd854b576125b058e9eb45b3da8b9_PhenomenalCat"; + assert(r === e); + }); + + it("should replace and sanitize placeholders", async () => { + // tslint:disable-next-line:no-invalid-template-strings + const c = "star-struck_${sdm.docker.registry}_${repo.owner}_${repo.name}_${branch}_PhenomenalCat"; + const r = await resolveClassifierPath(c, gi); + const e = "TH3K1NK5/star-struck_kinks_bigsky_TheKinks_village-green_preservation_society_PhenomenalCat"; + assert(r === e); + }); + }); - it("should default to NoOpGoalCache", async () => { - fakeGoal.configuration.sdm.cache.store = undefined; - const fallback: GoalProjectListenerRegistration = { - name: "fallback", - listener: async p => { - await p.addFile("fallback.txt", "test"); - }, - }; - const options: GoalCacheOptions = { - entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], - onCacheMiss: fallback, - }; - await cachePut(options) - .listener(project, fakeGoal, GoalProjectListenerEvent.after); - const emptyProject = InMemoryProject.of(); - await cacheRestore(options) - .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); - assert(await emptyProject.hasFile("fallback.txt")); + describe("goalCaching", () => { + let project; + const testCache = new TestGoalArtifactCache(); + let fakePushId; + let fakeGoal; + + beforeEach(() => { + project = InMemoryProject.of({ path: "test.txt", content: "Test" }, { + path: "dirtest/test.txt", + content: "", + }); + fakePushId = fakePush().id; + fakeGoal = fakeGoalInvocation(fakePushId); + fakeGoal.progressLog = new LoggingProgressLog("test", "debug"); + fakeGoal.configuration.sdm.cache = { + enabled: true, + store: testCache, + }; + }); + + it("should cache and retrieve", async () => { + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: ErrorProjectListenerRegistration, + }; + + fakeGoal.goalEvent.data = JSON.stringify({ foo: "bar" }); + + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // it should find it in the cache + const emptyProject = InMemoryProject.of(); + assert(!await emptyProject.hasFile("test.txt")); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("test.txt")); + const data = JSON.parse(fakeGoal.goalEvent.data); + assert.deepStrictEqual(data["@atomist/sdm/input"], [{ classifier: "default" }]); + assert.deepStrictEqual(data["@atomist/sdm/output"], options.entries); + assert.deepStrictEqual(data.foo, "bar"); + }); + + it("should call fallback on cache miss", async () => { + // when cache something + const fallback: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test2.txt", "test"); + }, + }; + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: fallback, + }; + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // and clearing the cache + await cacheRemove(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // it should not find it in the cache and call fallback + const emptyProject = InMemoryProject.of(); + assert(!await emptyProject.hasFile("test2.txt")); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("test2.txt")); + }); + + it("should call multiple fallbacks on cache miss", async () => { + // when cache something + const fallback: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test2.txt", "test"); + }, + }; + const fallback2: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + if (await p.hasFile("test2.txt")) { + await p.addFile("test3.txt", "test"); + } + }, + }; + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: [fallback, fallback2], + }; + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // and clearing the cache + await cacheRemove(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // it should not find it in the cache and call fallback + const emptyProject = InMemoryProject.of(); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("test2.txt")); + assert(await emptyProject.hasFile("test3.txt")); + }); + + it("shouldn't call fallback with failing pushtest on cache miss", async () => { + // when cache something + const NoPushMatches = pushTest("never", async () => false); + const fallback: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test.txt", "test"); + }, + }; + const fallback2: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test2.txt", "test"); + }, + pushTest: NoPushMatches, + }; + const fallback3: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test3.txt", "test"); + }, + }; + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: [fallback, fallback2, fallback3], + }; + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // and clearing the cache + await cacheRemove(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // it should not find it in the cache and call fallback + const emptyProject = InMemoryProject.of(); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("test.txt")); + assert(!await emptyProject.hasFile("test2.txt")); + assert(await emptyProject.hasFile("test3.txt")); + }); + + it("shouldn't call fallback with wrong event on cache miss", async () => { + // when cache something + const NoPushMatches = pushTest("never", async () => false); + const fallback: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test.txt", "test"); + }, + }; + const fallback2: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test2.txt", "test"); + }, + pushTest: NoPushMatches, + }; + const fallback3: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("test3.txt", "test"); + }, + events: [GoalProjectListenerEvent.after], + }; + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: [fallback, fallback2, fallback3], + }; + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // and clearing the cache + await cacheRemove(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + // it should not find it in the cache and call fallback + const emptyProject = InMemoryProject.of(); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("test.txt")); + assert(!await emptyProject.hasFile("test2.txt")); + assert(!await emptyProject.hasFile("test3.txt")); + }); + + it("should default to NoOpGoalCache", async () => { + fakeGoal.configuration.sdm.cache.store = undefined; + const fallback: GoalProjectListenerRegistration = { + name: "fallback", + listener: async p => { + await p.addFile("fallback.txt", "test"); + }, + }; + const options: GoalCacheOptions = { + entries: [{ classifier: "default", pattern: { globPattern: "**/*.txt" } }], + onCacheMiss: fallback, + }; + await cachePut(options) + .listener(project, fakeGoal, GoalProjectListenerEvent.after); + const emptyProject = InMemoryProject.of(); + await cacheRestore(options) + .listener(emptyProject as any as GitProject, fakeGoal, GoalProjectListenerEvent.before); + assert(await emptyProject.hasFile("fallback.txt")); + }); + }); }); diff --git a/test/goal/skillOutput.test.ts b/test/goal/skillOutput.test.ts new file mode 100644 index 00000000..c654c776 --- /dev/null +++ b/test/goal/skillOutput.test.ts @@ -0,0 +1,178 @@ +/* + * 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/goal/cache/goalCaching"; +import { SkillOutputGoalExecutionListener } from "../../lib/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); + }); + +}); diff --git a/test/machine/yaml/resolvePlaceholder.test.ts b/test/machine/yaml/resolvePlaceholder.test.ts index 44eaf3e7..f15bf70b 100644 --- a/test/machine/yaml/resolvePlaceholder.test.ts +++ b/test/machine/yaml/resolvePlaceholder.test.ts @@ -111,7 +111,7 @@ describe("machine/yaml/resolvePlaceholder", () => { it("should replace skill configuration parameters", async () => { // tslint:disable-next-line:no-invalid-template-strings - const value = "${skill.configuration.image}"; + const value = "${skill.configuration.parameters.image}/${skill.configuration.name}"; const result = await resolvePlaceholder(value, { sha: "sfsfsafdsf", branch: "master", @@ -131,8 +131,14 @@ describe("machine/yaml/resolvePlaceholder", () => { }, }, }, + skill: { + configuration: { + name: "bar", + parameters: { image: "foo:latest" }, + }, + }, } as any, {}); - assert.deepStrictEqual(result, "foo:latest"); + assert.deepStrictEqual(result, "foo:latest/bar"); }); }); diff --git a/test/mapping/pushtest/isSkillConfigured.test.ts b/test/mapping/pushtest/isSkillConfigured.test.ts new file mode 100644 index 00000000..39068036 --- /dev/null +++ b/test/mapping/pushtest/isSkillConfigured.test.ts @@ -0,0 +1,229 @@ +/* + * 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 { InMemoryFile } from "@atomist/automation-client/lib/project/mem/InMemoryFile"; +import { InMemoryProject } from "@atomist/automation-client/lib/project/mem/InMemoryProject"; +import { fakePush } from "@atomist/sdm/lib/api-helper/testsupport/fakePush"; +import * as assert from "power-assert"; +import { isSkillConfigured } from "../../../lib/mapping/pushtest/isSkillConfigured"; + +describe("isSkillConfigured", () => { + + it("should return true for no configuration", async () => { + const result = await isSkillConfigured().mapping({} as any); + assert.strictEqual(result, true); + }); + + it("should use hasFile from configuration", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + hasFile: "test.md", + }, + }, + }; + let result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, true); + pli.skill = { + configuration: { + name: "default", + parameters: { + hasFile: "test.html", + }, + }, + }; + result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use hasFile from configuration with name overwrite", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + file: "test.md", + }, + }, + }; + let result = await isSkillConfigured({ hasFile: "file" }).mapping(pli); + assert.strictEqual(result, true); + pli.skill = { + configuration: { + name: "default", + parameters: { + file: "test.html", + }, + }, + }; + result = await isSkillConfigured({ hasFile: "file" }).mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use isBranch from configuration", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + isBranch: "^mast.*$", + }, + }, + }; + let result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, true); + pli.skill = { + configuration: { + name: "default", + parameters: { + isBranch: "^feature-*$", + }, + }, + }; + result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use isBranch from configuration with name overwrite", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + branch: "^mast.*$", + }, + }, + }; + let result = await isSkillConfigured({ isBranch: "branch" }).mapping(pli); + assert.strictEqual(result, true); + pli.skill = { + configuration: { + name: "default", + parameters: { + branch: "^feature-*$", + }, + }, + }; + result = await isSkillConfigured({ isBranch: "branch" }).mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use isDefaultBranch from configuration", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + isDefaultBranch: true, + }, + }, + }; + pli.push.repo = { + defaultBranch: "master", + } as any; + let result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, true); + pli.push.branch = "feature-1"; + result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use isDefaultBranch from configuration with name overwrite", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + toDefaultBranch: true, + }, + }, + }; + pli.push.repo = { + defaultBranch: "master", + } as any; + let result = await isSkillConfigured({ isDefaultBranch: "toDefaultBranch" }).mapping(pli); + assert.strictEqual(result, true); + pli.push.branch = "feature-1"; + result = await isSkillConfigured({ isDefaultBranch: "toDefaultBranch" }).mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use hasCommit from configuration", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + hasCommit: "^Fix:.*$", + }, + }, + }; + pli.push.commits = [{ message: "Something that doesn't match" }, { message: "Fix: handle null parameter" }]; + let result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, true); + pli.push.commits = [{ message: "Handle null parameter" }]; + result = await isSkillConfigured().mapping(pli); + assert.strictEqual(result, false); + }); + + it("should use hasCommit from configuration with name overwrite", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + commits: "^Fix:.*$", + }, + }, + }; + pli.push.commits = [{ message: "Something that doesn't match" }, { message: "Fix: handle null parameter" }]; + let result = await isSkillConfigured({ hasCommit: "commits" }).mapping(pli); + assert.strictEqual(result, true); + pli.push.commits = [{ message: "Handle null parameter" }]; + result = await isSkillConfigured({ hasCommit: "commits" }).mapping(pli); + assert.strictEqual(result, false); + }); + + it("should combine the configured push tests", async () => { + const p = InMemoryProject.of(new InMemoryFile("test.md", "")); + const pli = fakePush(p); + pli.skill = { + configuration: { + name: "default", + parameters: { + file: "test.md", + hasCommit: "^Fix:.*$", + toDefaultBranch: true, + branch: "^mas.*$", + }, + }, + }; + pli.push.commits = [{ message: "Something that doesn't match" }, { message: "Fix: handle null parameter" }]; + const result = await isSkillConfigured({ hasFile: "file", isBranch: "branch" }).mapping(pli); + assert.strictEqual(result, true); + }); + +});