diff --git a/bin/start-dev.ts b/bin/start-dev.ts index a2d33534a..d7a1ecd76 100644 --- a/bin/start-dev.ts +++ b/bin/start-dev.ts @@ -29,7 +29,8 @@ async function main(): Promise { const registration = prepareRegistration(cfg); const chokidar = require("chokidar"); - const watcher = chokidar.watch(["index.js", "lib/*.js", "lib/**/*.js"], { ignored: "\.ts" }); + const additionalFilesToWatch = (process.env.ATOMIST_WATCH_PATHS || "").split(","); + const watcher = chokidar.watch(["index.js", "lib/*.js", "lib/**/*.js", ...additionalFilesToWatch], { ignored: "\.ts" }); const indexPath = path.join(appRoot.path, "index.js"); const libPath = path.join(appRoot.path, "lib"); diff --git a/lib/automationClient.ts b/lib/automationClient.ts index a5deef280..1ebe0b349 100644 --- a/lib/automationClient.ts +++ b/lib/automationClient.ts @@ -51,6 +51,7 @@ export class AutomationClient implements RequestProcessor { public httpServer: ExpressServer; public webSocketHandler: RequestProcessor; public httpHandler: RequestProcessor; + public requestProcessor: RequestProcessor; private readonly defaultListeners: AutomationEventListener[] = [ new MetricEnabledAutomationEventListener(), @@ -59,7 +60,8 @@ export class AutomationClient implements RequestProcessor { new StartupTimeMessageUatomationEventListener(), ]; - constructor(public configuration: Configuration) { + constructor(public configuration: Configuration, + public requestProcessorMaker?: (automations: AutomationServer, configuration: Configuration, listeners: AutomationEventListener[]) => RequestProcessor) { this.automations = new BuildableAutomationServer(configuration); (global as any).__runningAutomationClient = this as AutomationClient; } @@ -84,7 +86,9 @@ export class AutomationClient implements RequestProcessor { } public processCommand(command: CommandIncoming, callback?: (result: Promise) => void): void { - if (this.webSocketHandler) { + if (this.requestProcessor) { + return this.requestProcessor.processCommand(command, callback); + } else if (this.webSocketHandler) { return this.webSocketHandler.processCommand(command, callback); } else if (this.httpHandler) { return this.httpHandler.processCommand(command, callback); @@ -94,7 +98,9 @@ export class AutomationClient implements RequestProcessor { } public processEvent(event: EventIncoming, callback?: (results: Promise) => void): void { - if (this.webSocketHandler) { + if (this.requestProcessor) { + return this.requestProcessor.processEvent(event, callback); + } else if (this.webSocketHandler) { return this.webSocketHandler.processEvent(event, callback); } else if (this.httpHandler) { return this.httpHandler.processEvent(event, callback); @@ -112,6 +118,13 @@ export class AutomationClient implements RequestProcessor { const clientSig = `${this.configuration.name}:${this.configuration.version}`; const clientConf = stringify(this.configuration, obfuscateJson); + if (!!this.requestProcessorMaker) { + this.requestProcessor = this.requestProcessorMaker( + this.automations, + this.configuration, + [...this.defaultListeners, ...this.configuration.listeners]); + } + if (!this.configuration.cluster.enabled) { logger.info(`Starting Atomist automation client ${clientSig}`); logger.debug(`Using automation client configuration: ${clientConf}`); @@ -235,7 +248,7 @@ export class AutomationClient implements RequestProcessor { private runHttp(handlerMaker: () => ExpressRequestProcessor): Promise { if (!this.configuration.http.enabled) { - return; + return Promise.resolve(); } this.httpHandler = handlerMaker(); @@ -248,8 +261,9 @@ export class AutomationClient implements RequestProcessor { } } -export function automationClient(configuration: Configuration): AutomationClient { - const client = new AutomationClient(configuration); +export function automationClient(configuration: Configuration, + requestProcessorMaker?: (automations: AutomationServer, configuration: Configuration, listeners: AutomationEventListener[]) => RequestProcessor): AutomationClient { + const client = new AutomationClient(configuration, requestProcessorMaker); configuration.commands.forEach(c => { client.withCommandHandler(c); }); diff --git a/lib/configuration.ts b/lib/configuration.ts index e36b1944c..fb5ab7bd3 100644 --- a/lib/configuration.ts +++ b/lib/configuration.ts @@ -961,18 +961,21 @@ export function validateConfiguration(cfg: Configuration): void { * is modified to contain the final configuration values and returned * from this function. * - * @param cfgPath path to file exporting the configuration object, if + * @param base path to file exporting the configuration object, if * not provided the package is searched for one * @return merged configuration object */ -export async function loadConfiguration(cfgPath?: string): Promise { +export async function loadConfiguration(base?: string | Promise): Promise { // Register the logger globally so that downstream modules can see it (global as any).__logger = logger; + const cfgPath = typeof base === "string" ? base : undefined; + const cfgBase = typeof base !== "string" ? base : undefined; + let cfg: Configuration; try { const defCfg = defaultConfiguration(); - const autoCfg = (await loadAutomationConfig(cfgPath)) || (await loadIndexConfig()); + const autoCfg = (await cfgBase) || (await loadAutomationConfig(cfgPath)) || (await loadIndexConfig()); const userCfg = loadUserConfiguration(defCfg.name, defCfg.version); const atmPathCfg = loadAtomistConfigPath(); const atmCfg = loadAtomistConfig(); diff --git a/lib/globals.ts b/lib/globals.ts index a5de07f71..ca516df36 100644 --- a/lib/globals.ts +++ b/lib/globals.ts @@ -1,5 +1,5 @@ import { AutomationClient } from "./automationClient"; -import { InMemoryEventStore } from "./internal/event/InMemoryEventStore"; +import { NoOpEventStore } from "./internal/event/NoOpEventStore"; import { EventStore } from "./spi/event/EventStore"; //////////////////////////////////////////////////////// @@ -7,7 +7,7 @@ let es: EventStore; function initEventStore(): void { if (!es) { - es = new InMemoryEventStore(); + es = new NoOpEventStore(); } } diff --git a/lib/graph/schema.json b/lib/graph/schema.json index 02c268fc8..9ac027e48 100644 --- a/lib/graph/schema.json +++ b/lib/graph/schema.json @@ -1,20 +1,63 @@ { "__schema": { "queryType": { - "name": "QueryType" + "name": "Query" }, "mutationType": { - "name": "MutationType" + "name": "Mutation" }, "subscriptionType": { - "name": "SubscriptionType" + "name": "Subscription" }, "types": [ { "kind": "OBJECT", - "name": "QueryType", - "description": "", + "name": "Query", + "description": null, "fields": [ + { + "name": "TeamConfiguration", + "description": "", + "args": [ + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "listDisabledRegistrations", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistRegistration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "Issue", "description": "", @@ -1043,6 +1086,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -1061,6 +1114,16 @@ "name": "Commit", "description": "", "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, { "name": "sha", "description": "", @@ -1309,6 +1372,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PushFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -3297,6 +3370,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -3430,6 +3513,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -3445,21 +3538,21 @@ "deprecationReason": null }, { - "name": "SCMId", + "name": "GitHubAppInstallation", "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -3469,45 +3562,31 @@ "defaultValue": null }, { - "name": "avatar", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null }, { - "name": "logins", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "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": "avatars", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -3528,7 +3607,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_GitHubAppInstallationOrdering", "ofType": null } }, @@ -3570,7 +3649,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "GitHubAppInstallation", "ofType": null } }, @@ -3578,9 +3657,19 @@ "deprecationReason": null }, { - "name": "GitHubId", + "name": "SCMId", "description": "", "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, { "name": "login", "description": "", @@ -3601,6 +3690,16 @@ }, "defaultValue": null }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "logins", "description": "", @@ -3629,6 +3728,20 @@ }, "defaultValue": null }, + { + "name": "avatars", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -3637,7 +3750,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubIdOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -3679,7 +3792,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubId", + "name": "SCMId", "ofType": null } }, @@ -3687,7 +3800,7 @@ "deprecationReason": null }, { - "name": "Tag", + "name": "GitHubAppResourceUser", "description": "", "args": [ { @@ -3701,37 +3814,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", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -3740,76 +3823,6 @@ }, "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": "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", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -3818,7 +3831,307 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_GitHubAppResourceUserOrdering", + "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": "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", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logins", + "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": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubIdOrdering", + "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": "GitHubId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Tag", + "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": "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": "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": "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", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_TagOrdering", "ofType": null } }, @@ -4236,6 +4549,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -6592,6 +6915,16 @@ "name": "ResourceProvider", "description": "", "args": [ + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -6878,6 +7211,16 @@ "name": "SCMProvider", "description": "", "args": [ + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "id", "description": "", @@ -7090,7 +7433,7 @@ "deprecationReason": null }, { - "name": "DockerRegistryProvider", + "name": "GitHubAppResourceProvider", "description": "", "args": [ { @@ -7104,17 +7447,7 @@ "defaultValue": null }, { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -7132,26 +7465,6 @@ "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": { @@ -7159,7 +7472,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "GitHubAppResourceProvider", "ofType": null } }, @@ -7167,7 +7480,7 @@ "deprecationReason": null }, { - "name": "UserJoinedChannel", + "name": "DockerRegistryProvider", "description": "", "args": [ { @@ -7181,30 +7494,32 @@ "defaultValue": null }, { - "name": "ids", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null }, "defaultValue": null }, @@ -7244,7 +7559,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UserJoinedChannel", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -7252,7 +7567,7 @@ "deprecationReason": null }, { - "name": "Webhook", + "name": "BinaryRepositoryProvider", "description": "", "args": [ { @@ -7266,7 +7581,7 @@ "defaultValue": null }, { - "name": "resourceProviderId", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -7274,59 +7589,24 @@ "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", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "BinaryRepositoryType", + "ofType": null }, "defaultValue": null }, @@ -7366,7 +7646,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChannelLink", + "name": "BinaryRepositoryProvider", "ofType": null } }, @@ -7374,7 +7654,7 @@ "deprecationReason": null }, { - "name": "Review", + "name": "UserJoinedChannel", "description": "", "args": [ { @@ -7387,66 +7667,6 @@ }, "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": "ids", "description": "", @@ -7461,90 +7681,6 @@ }, "defaultValue": null }, - { - "name": "gitHubIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "reviewIds", - "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": "ReviewState", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "submittedAts", - "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": "orderBy", "description": "", @@ -7553,7 +7689,358 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ReviewOrdering", + "name": "_UserJoinedChannelOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserJoinedChannel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Webhook", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ChannelLink", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChannelLinkOrdering", + "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": "ChannelLink", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Review", + "description": "", + "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": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitHubIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "reviewIds", + "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": "ReviewState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "submittedAts", + "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": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ReviewOrdering", "ofType": null } }, @@ -7688,8 +8175,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "GenericResourceUser", + "kind": "INTERFACE", + "name": "ResourceUser", "ofType": null } }, @@ -7922,12 +8409,12 @@ "deprecationReason": null }, { - "name": "SdmGoal", - "description": "Auto-generated query for SdmGoal", + "name": "CommitFingerprintImpact", + "description": "", "args": [ { "name": "id", - "description": "The ID of this SdmGoal", + "description": "", "type": { "kind": "SCALAR", "name": "ID", @@ -7936,68 +8423,114 @@ "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "type", + "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "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": "SourceFingerprint", + "description": "Find a single SourceFingerprint by its sha, type and name", + "args": [ { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "name", + "description": "The name of the fingerprint to retrieve", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "sha", + "description": "The sha of the fingerprint to retrieve", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "type", + "description": "The type of the fingerprint to retrieve", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commitsWithFingerprints", + "description": "Search for fingerprints, with paging", + "args": [ { - "name": "_before", - "description": "Search only before this timestamp", + "name": "_paging", + "description": "", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "PagingInfoInput", "ofType": null }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "name", + "description": "Restrict to this fingerprint name", "type": { - "kind": "ENUM", - "name": "_Ordering", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "repoId", + "description": "Restrict to this particular repo", "type": { "kind": "SCALAR", "name": "String", @@ -8006,24 +8539,37 @@ "defaultValue": null }, { - "name": "approvalRequired", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CommitsWithFingerprints", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fingerprintAggregates", + "description": "", + "args": [ { - "name": "branch", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -8034,10 +8580,10 @@ "defaultValue": null }, { - "name": "data", - "description": null, + "name": "type", + "description": "", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", @@ -8046,279 +8592,454 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "FingerprintAggregates", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fingerprintTargets", + "description": "", + "args": [ { - "name": "description", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "environment", - "description": null, + "name": "type", + "description": "", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintTarget", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headCommitFingerprintCounts", + "description": "Find the count of all repos that have been analyzed", + "args": [ + { + "name": "name", + "description": "Restrict to this fingerprint name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "error", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FingerprintCounts", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "headCommitsWithFingerprint", + "description": "Find all repos that contain named fingerprint in the HEAD commit", + "args": [ + { + "name": "name", + "description": "Restrict to this fingerprint name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalKey", - "description": null, + "name": "repoId", + "description": "Restrict to a particular repoId", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "externalUrl", - "description": null, + "name": "type", + "description": "Restrict to this fingerprint type", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FingerprintedCommit", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AtmJob", + "description": "Return AtmJobs", + "args": [ + { + "name": "id", + "description": "The id of the AtmJob to match", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "goalSet", - "description": null, + "name": "name", + "description": "The name of AtmJobs to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "goalSetId", - "description": null, + "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": "name", - "description": null, + "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": "phase", - "description": null, + "name": "jobId", + "description": "The jobId of the AtmJobTask to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "preApprovalRequired", - "description": null, + "name": "name", + "description": "The name of AtmJobsTasks to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "retryFeasible", - "description": null, + "name": "owner", + "description": "The owner of the parent AtmJob", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "sha", - "description": null, + "name": "state", + "description": "The state of AtmJobTasks to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ok", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Ok", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eventsReport", + "description": "Generate a report breaking down the number of events submitted by a given team.\nThis query is in beta and may change substantially before being finalized.", + "args": [ + { + "name": "bucketUnit", + "description": "The bucket unit to use when aggregating the counts.", + "type": { + "kind": "ENUM", + "name": "BucketUnit", + "ofType": null }, "defaultValue": null }, { - "name": "signature", - "description": null, + "name": "eventTypes", + "description": "Filter the report to these types of event.", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } } }, "defaultValue": null }, { - "name": "state", - "description": null, + "name": "from", + "description": "The date-time to start the report from (inclusive).", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "ts", - "description": null, + "name": "to", + "description": "The date-time to end the report at (exclusive).", "type": { - "kind": "LIST", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "EventsReportRow", "ofType": null } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "throttledEventsReport", + "description": "Generate a report breaking down the number of events which have been throttled for a given team.\nThis query is in beta and may change substantially before being finalized.", + "args": [ + { + "name": "bucketUnit", + "description": "The bucket unit to use when aggregating the counts.", + "type": { + "kind": "ENUM", + "name": "BucketUnit", + "ofType": null }, "defaultValue": null }, { - "name": "uniqueName", - "description": null, + "name": "eventTypes", + "description": "Filter the report to these types of event.", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } } }, "defaultValue": null }, { - "name": "url", - "description": null, + "name": "from", + "description": "The date-time to start the report from (inclusive).", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "version", - "description": null, + "name": "to", + "description": "The date-time to end the report at (exclusive).", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SdmGoal", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "EventsReportRow", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "SdmGoalSet", - "description": "Auto-generated query for SdmGoalSet", + "name": "CommitIssueRelationship", + "description": "Auto-generated query for CommitIssueRelationship", "args": [ { "name": "id", - "description": "The ID of this SdmGoalSet", + "description": "The ID of this CommitIssueRelationship", "type": { "kind": "SCALAR", "name": "ID", @@ -8397,84 +9118,14 @@ "defaultValue": null }, { - "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", + "name": "type", "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", + "name": "CommitIssueRelationshipType", "ofType": null } }, @@ -8486,7 +9137,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSet", + "name": "CommitIssueRelationship", "ofType": null } }, @@ -8494,12 +9145,12 @@ "deprecationReason": null }, { - "name": "SdmGoalDisplay", - "description": "Auto-generated query for SdmGoalDisplay", + "name": "Deployment", + "description": "Auto-generated query for Deployment", "args": [ { "name": "id", - "description": "The ID of this SdmGoalDisplay", + "description": "The ID of this Deployment", "type": { "kind": "SCALAR", "name": "ID", @@ -8578,21 +9229,7 @@ "defaultValue": null }, { - "name": "branch", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "sha", + "name": "environment", "description": null, "type": { "kind": "LIST", @@ -8605,20 +9242,6 @@ }, "defaultValue": null }, - { - "name": "state", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "ofType": null - } - }, - "defaultValue": null - }, { "name": "ts", "description": null, @@ -8639,7 +9262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalDisplay", + "name": "Deployment", "ofType": null } }, @@ -8647,12 +9270,12 @@ "deprecationReason": null }, { - "name": "SdmBuildIdentifier", - "description": "Auto-generated query for SdmBuildIdentifier", + "name": "IssueRelationship", + "description": "Auto-generated query for IssueRelationship", "args": [ { "name": "id", - "description": "The ID of this SdmBuildIdentifier", + "description": "The ID of this IssueRelationship", "type": { "kind": "SCALAR", "name": "ID", @@ -8731,7 +9354,7 @@ "defaultValue": null }, { - "name": "identifier", + "name": "relationshipId", "description": null, "type": { "kind": "LIST", @@ -8743,14 +9366,42 @@ } }, "defaultValue": null - } - ], - "type": { + }, + { + "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": "SdmBuildIdentifier", + "name": "IssueRelationship", "ofType": null } }, @@ -8758,12 +9409,12 @@ "deprecationReason": null }, { - "name": "SdmDeployEnablement", - "description": "Auto-generated query for SdmDeployEnablement", + "name": "SdmGoal", + "description": "Auto-generated query for SdmGoal", "args": [ { "name": "id", - "description": "The ID of this SdmDeployEnablement", + "description": "The ID of this SdmGoal", "type": { "kind": "SCALAR", "name": "ID", @@ -8842,21 +9493,31 @@ "defaultValue": null }, { - "name": "owner", + "name": "_showHistory", + "description": "For SDMGoals only - show all of history, not just the latest", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "approvalRequired", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "providerId", + "name": "branch", "description": null, "type": { "kind": "LIST", @@ -8870,7 +9531,7 @@ "defaultValue": null }, { - "name": "repo", + "name": "data", "description": null, "type": { "kind": "LIST", @@ -8884,118 +9545,133 @@ "defaultValue": null }, { - "name": "state", + "name": "description", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmDeployState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SdmVersion", - "description": "Auto-generated query for SdmVersion", - "args": [ + }, { - "name": "id", - "description": "The ID of this SdmVersion", + "name": "environment", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_offset", - "description": "Paging offset (default 0)", + "name": "error", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_first", - "description": "Return the first X results (default 10)", + "name": "externalKey", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_orderBy", - "description": "Name of property to sort on", + "name": "externalUrl", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_after", - "description": "Search only after this timestamp", + "name": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_before", - "description": "Search only before this timestamp", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_ordering", - "description": "Direction of ordering", + "name": "name", + "description": null, "type": { - "kind": "ENUM", - "name": "_Ordering", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_search", - "description": "Elastic Search simple full text search syntax", + "name": "parameters", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "branch", + "name": "phase", "description": null, "type": { "kind": "LIST", @@ -9008,6 +9684,34 @@ }, "defaultValue": null }, + { + "name": "preApprovalRequired", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "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, @@ -9023,7 +9727,63 @@ "defaultValue": null }, { - "name": "version", + "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", @@ -9035,6 +9795,20 @@ } }, "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -9042,7 +9816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmVersion", + "name": "SdmGoal", "ofType": null } }, @@ -9050,12 +9824,12 @@ "deprecationReason": null }, { - "name": "SdmGoalSetBadge", - "description": "Auto-generated query for SdmGoalSetBadge", + "name": "SdmGoalSet", + "description": "Auto-generated query for SdmGoalSet", "args": [ { "name": "id", - "description": "The ID of this SdmGoalSetBadge", + "description": "The ID of this SdmGoalSet", "type": { "kind": "SCALAR", "name": "ID", @@ -9134,7 +9908,7 @@ "defaultValue": null }, { - "name": "sdm", + "name": "branch", "description": null, "type": { "kind": "LIST", @@ -9148,7 +9922,35 @@ "defaultValue": null }, { - "name": "token", + "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", @@ -9160,6 +9962,34 @@ } }, "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -9167,7 +9997,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSetBadge", + "name": "SdmGoalSet", "ofType": null } }, @@ -9175,12 +10005,12 @@ "deprecationReason": null }, { - "name": "SdmPreference", - "description": "Auto-generated query for SdmPreference", + "name": "SdmGoalDisplay", + "description": "Auto-generated query for SdmGoalDisplay", "args": [ { "name": "id", - "description": "The ID of this SdmPreference", + "description": "The ID of this SdmGoalDisplay", "type": { "kind": "SCALAR", "name": "ID", @@ -9259,7 +10089,7 @@ "defaultValue": null }, { - "name": "key", + "name": "branch", "description": null, "type": { "kind": "LIST", @@ -9273,21 +10103,21 @@ "defaultValue": null }, { - "name": "ttl", + "name": "format", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", "ofType": null } }, "defaultValue": null }, { - "name": "value", + "name": "sha", "description": null, "type": { "kind": "LIST", @@ -9299,6 +10129,34 @@ } }, "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -9306,7 +10164,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmPreference", + "name": "SdmGoalDisplay", "ofType": null } }, @@ -9314,12 +10172,12 @@ "deprecationReason": null }, { - "name": "SdmRepoProvenance", - "description": "Auto-generated query for SdmRepoProvenance", + "name": "SdmBuildIdentifier", + "description": "Auto-generated query for SdmBuildIdentifier", "args": [ { "name": "id", - "description": "The ID of this SdmRepoProvenance", + "description": "The ID of this SdmBuildIdentifier", "type": { "kind": "SCALAR", "name": "ID", @@ -9396,6 +10254,20 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -9403,7 +10275,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmRepoProvenance", + "name": "SdmBuildIdentifier", "ofType": null } }, @@ -9411,12 +10283,12 @@ "deprecationReason": null }, { - "name": "PodDeployment", - "description": "Auto-generated query for PodDeployment", + "name": "SdmDeployEnablement", + "description": "Auto-generated query for SdmDeployEnablement", "args": [ { "name": "id", - "description": "The ID of this PodDeployment", + "description": "The ID of this SdmDeployEnablement", "type": { "kind": "SCALAR", "name": "ID", @@ -9495,58 +10367,91 @@ "defaultValue": null }, { - "name": "deploymentName", + "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": "environment", + "name": "providerId", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "imageTag", + "name": "repo", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "previousSha", + "name": "state", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null + } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmDeployEnablement", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmVersion", + "description": "Auto-generated query for SdmVersion", + "args": [ { - "name": "sha", - "description": null, + "name": "id", + "description": "The ID of this SdmVersion", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "targetReplicas", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", "type": { "kind": "SCALAR", "name": "Int", @@ -9555,22 +10460,114 @@ "defaultValue": null }, { - "name": "timestamp", - "description": null, + "name": "_first", + "description": "Return the first X results (default 10)", "type": { "kind": "SCALAR", "name": "Int", "ofType": null }, "defaultValue": null - } - ], - "type": { + }, + { + "name": "_orderBy", + "description": "Name of property to sort on", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_after", + "description": "Search only after this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_before", + "description": "Search only before this timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_ordering", + "description": "Direction of ordering", + "type": { + "kind": "ENUM", + "name": "_Ordering", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_search", + "description": "Elastic Search simple full text search syntax", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "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 + } + ], + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "PodDeployment", + "name": "SdmVersion", "ofType": null } }, @@ -9578,12 +10575,12 @@ "deprecationReason": null }, { - "name": "CommitIssueRelationship", - "description": "Auto-generated query for CommitIssueRelationship", + "name": "SdmGoalSetBadge", + "description": "Auto-generated query for SdmGoalSetBadge", "args": [ { "name": "id", - "description": "The ID of this CommitIssueRelationship", + "description": "The ID of this SdmGoalSetBadge", "type": { "kind": "SCALAR", "name": "ID", @@ -9662,14 +10659,28 @@ "defaultValue": null }, { - "name": "type", + "name": "sdm", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -9681,7 +10692,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CommitIssueRelationship", + "name": "SdmGoalSetBadge", "ofType": null } }, @@ -9689,12 +10700,12 @@ "deprecationReason": null }, { - "name": "Deployment", - "description": "Auto-generated query for Deployment", + "name": "SdmPreference", + "description": "Auto-generated query for SdmPreference", "args": [ { "name": "id", - "description": "The ID of this Deployment", + "description": "The ID of this SdmPreference", "type": { "kind": "SCALAR", "name": "ID", @@ -9773,7 +10784,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "key", "description": null, "type": { "kind": "LIST", @@ -9787,7 +10798,7 @@ "defaultValue": null }, { - "name": "ts", + "name": "ttl", "description": null, "type": { "kind": "LIST", @@ -9799,6 +10810,20 @@ } }, "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -9806,7 +10831,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Deployment", + "name": "SdmPreference", "ofType": null } }, @@ -9814,12 +10839,12 @@ "deprecationReason": null }, { - "name": "IssueRelationship", - "description": "Auto-generated query for IssueRelationship", + "name": "SdmRepoProvenance", + "description": "Auto-generated query for SdmRepoProvenance", "args": [ { "name": "id", - "description": "The ID of this IssueRelationship", + "description": "The ID of this SdmRepoProvenance", "type": { "kind": "SCALAR", "name": "ID", @@ -9896,9 +10921,106 @@ "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmRepoProvenance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyLog", + "description": "Auto-generated query for PolicyLog", + "args": [ + { + "name": "id", + "description": "The ID of this PolicyLog", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "relationshipId", + "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": "name", "description": null, "type": { "kind": "LIST", @@ -9912,14 +11034,14 @@ "defaultValue": null }, { - "name": "state", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, @@ -9945,7 +11067,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "IssueRelationship", + "name": "PolicyLog", "ofType": null } }, @@ -9953,12 +11075,12 @@ "deprecationReason": null }, { - "name": "Card", - "description": "Auto-generated query for Card", + "name": "PolicyCompliance", + "description": "Auto-generated query for PolicyCompliance", "args": [ { "name": "id", - "description": "The ID of this Card", + "description": "The ID of this PolicyCompliance", "type": { "kind": "SCALAR", "name": "ID", @@ -10037,7 +11159,7 @@ "defaultValue": null }, { - "name": "key", + "name": "_branch", "description": null, "type": { "kind": "LIST", @@ -10051,7 +11173,7 @@ "defaultValue": null }, { - "name": "post", + "name": "_owner", "description": null, "type": { "kind": "LIST", @@ -10065,7 +11187,7 @@ "defaultValue": null }, { - "name": "shortTitle", + "name": "_repo", "description": null, "type": { "kind": "LIST", @@ -10079,42 +11201,56 @@ "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": "owner", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "type", + "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": "String", + "name": "Int", "ofType": null } }, @@ -10126,7 +11262,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Card", + "name": "PolicyCompliance", "ofType": null } }, @@ -10134,12 +11270,12 @@ "deprecationReason": null }, { - "name": "Notification", - "description": "Auto-generated query for Notification", + "name": "PolicyTargetStream", + "description": "Auto-generated query for PolicyTargetStream", "args": [ { "name": "id", - "description": "The ID of this Notification", + "description": "The ID of this PolicyTargetStream", "type": { "kind": "SCALAR", "name": "ID", @@ -10218,18 +11354,69 @@ "defaultValue": null }, { - "name": "body", + "name": "name", "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": "PolicyTargetStream", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyTarget", + "description": "Auto-generated query for PolicyTarget", + "args": [ + { + "name": "id", + "description": "The ID of this PolicyTarget", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "contentType", - "description": null, + "name": "_offset", + "description": "Paging offset (default 0)", + "type": { + "kind": "SCALAR", + "name": "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", @@ -10238,8 +11425,38 @@ "defaultValue": null }, { - "name": "key", - "description": 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", @@ -10248,7 +11465,7 @@ "defaultValue": null }, { - "name": "post", + "name": "data", "description": null, "type": { "kind": "LIST", @@ -10262,24 +11479,84 @@ "defaultValue": null }, { - "name": "ts", + "name": "displayName", "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": "displayValue", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "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 } }, @@ -10291,7 +11568,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Notification", + "name": "PolicyTarget", "ofType": null } }, @@ -10299,12 +11576,12 @@ "deprecationReason": null }, { - "name": "Feedback", - "description": "Auto-generated query for Feedback", + "name": "Card", + "description": "Auto-generated query for Card", "args": [ { "name": "id", - "description": "The ID of this Feedback", + "description": "The ID of this Card", "type": { "kind": "SCALAR", "name": "ID", @@ -10383,7 +11660,7 @@ "defaultValue": null }, { - "name": "email", + "name": "key", "description": null, "type": { "kind": "LIST", @@ -10397,7 +11674,21 @@ "defaultValue": null }, { - "name": "message", + "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", @@ -10411,8 +11702,36 @@ "defaultValue": null }, { - "name": "invocation_id", - "description": "compositeId", + "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, @@ -10430,7 +11749,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Feedback", + "name": "Card", "ofType": null } }, @@ -10438,12 +11757,12 @@ "deprecationReason": null }, { - "name": "ManifestoSignature", - "description": "Auto-generated query for ManifestoSignature", + "name": "Notification", + "description": "Auto-generated query for Notification", "args": [ { "name": "id", - "description": "The ID of this ManifestoSignature", + "description": "The ID of this Notification", "type": { "kind": "SCALAR", "name": "ID", @@ -10522,35 +11841,47 @@ "defaultValue": null }, { - "name": "userId", - "description": "compositeId", + "name": "body", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "email", + "name": "contentType", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "userName", + "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", @@ -10564,14 +11895,24 @@ "defaultValue": null }, { - "name": "user", + "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": "String", + "name": "Int", "ofType": null } }, @@ -10583,7 +11924,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ManifestoSignature", + "name": "Notification", "ofType": null } }, @@ -10591,12 +11932,12 @@ "deprecationReason": null }, { - "name": "SentryAlert", - "description": "Auto-generated query for SentryAlert", + "name": "AspectRegistration", + "description": "Auto-generated query for AspectRegistration", "args": [ { "name": "id", - "description": "The ID of this SentryAlert", + "description": "The ID of this AspectRegistration", "type": { "kind": "SCALAR", "name": "ID", @@ -10675,7 +12016,7 @@ "defaultValue": null }, { - "name": "culprit", + "name": "category", "description": null, "type": { "kind": "LIST", @@ -10689,7 +12030,7 @@ "defaultValue": null }, { - "name": "level", + "name": "description", "description": null, "type": { "kind": "LIST", @@ -10703,7 +12044,7 @@ "defaultValue": null }, { - "name": "message", + "name": "displayName", "description": null, "type": { "kind": "LIST", @@ -10717,7 +12058,7 @@ "defaultValue": null }, { - "name": "project", + "name": "endpoint", "description": null, "type": { "kind": "LIST", @@ -10731,7 +12072,77 @@ "defaultValue": null }, { - "name": "project_name", + "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", @@ -10757,6 +12168,20 @@ } }, "defaultValue": null + }, + { + "name": "uuid", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null } ], "type": { @@ -10764,7 +12189,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SentryAlert", + "name": "AspectRegistration", "ofType": null } }, @@ -10996,6 +12421,26 @@ } }, "defaultValue": null + }, + { + "name": "ownerName", + "description": "The owner of the repo of the Push", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoName", + "description": "The name of the repo of the Push", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -11060,225 +12505,99 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "IssueState", - "description": "Enum for IssueState", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "open", - "description": "Value for open", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closed", - "description": "Value for closed", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "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", + "name": "linkedFingerprint", + "description": "Find SourceFingerprint by name, owner and provider id", + "args": [ + { + "name": "name", + "description": "SourceFingerprint name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "SourceFingerprint sha", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "SourceFingerprint type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "closedAt_desc", - "description": "Descending sort for closedAt", + "name": "pullRequestById", + "description": "Fetch a PR by its id", + "args": [ + { + "name": "id", + "description": "ID in the graph for this PR", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ", + "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, @@ -11287,108 +12606,149 @@ }, { "kind": "OBJECT", - "name": "Issue", - "description": "Issue-Node", + "name": "TeamConfiguration", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "namespace", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the url of the Issue", + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Issue", + "name": "value", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number", - "description": "number of Issue", + "name": "ttlSecs", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Issue", + "name": "createdAt", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": "title of Issue", + "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 - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Team", + "description": "Team-Node", + "fields": [ { - "name": "body", - "description": "body of Issue", + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of Issue", + "name": "url", + "description": "the URL of the Team", "args": [], "type": { - "kind": "ENUM", - "name": "IssueState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Issue", + "name": "id", + "description": "id of Team", "args": [], "type": { "kind": "SCALAR", @@ -11399,8 +12759,8 @@ "deprecationReason": null }, { - "name": "action", - "description": "action of Issue", + "name": "name", + "description": "name of Team", "args": [], "type": { "kind": "SCALAR", @@ -11411,8 +12771,8 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Issue", + "name": "description", + "description": "description of Team", "args": [], "type": { "kind": "SCALAR", @@ -11423,8 +12783,8 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of Issue", + "name": "iconUrl", + "description": "iconUrl of Team", "args": [], "type": { "kind": "SCALAR", @@ -11435,8 +12795,8 @@ "deprecationReason": null }, { - "name": "closedAt", - "description": "closedAt of Issue", + "name": "createdAt", + "description": "createdAt of Team", "args": [], "type": { "kind": "SCALAR", @@ -11447,8 +12807,8 @@ "deprecationReason": null }, { - "name": "repo", - "description": "Issue repo Repo", + "name": "persons", + "description": "Team persons Person", "args": [ { "name": "id", @@ -11461,7 +12821,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -11471,7 +12831,7 @@ "defaultValue": null }, { - "name": "name", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -11481,57 +12841,41 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PersonOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "repoId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -11542,11 +12886,11 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "Person", "ofType": null } }, @@ -11554,31 +12898,21 @@ "deprecationReason": null }, { - "name": "resolvingCommits", - "description": "Issue resolvingCommits Commit", + "name": "orgs", + "description": "Team orgs Org", "args": [ { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -11595,7 +12929,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -11620,6 +12954,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "ownerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -11627,7 +12971,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "Org", "ofType": null } }, @@ -11635,21 +12979,21 @@ "deprecationReason": null }, { - "name": "openedBy", - "description": "Issue openedBy SCMId", + "name": "providers", + "description": "Team providers GitHubProvider", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -11659,7 +13003,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -11667,22 +13011,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closedBy", - "description": "Issue closedBy SCMId", - "args": [ + }, { - "name": "login", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -11692,7 +13023,7 @@ "defaultValue": null }, { - "name": "name", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -11702,27 +13033,31 @@ "defaultValue": null }, { - "name": "avatar", + "name": "providerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "labels", - "description": "Issue labels Label", + "name": "scmProviders", + "description": "Team scmProviders SCMProvider", "args": [ { "name": "id", @@ -11735,17 +13070,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "default", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -11755,7 +13080,7 @@ "defaultValue": null }, { - "name": "color", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -11765,58 +13090,7 @@ "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 - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignees", - "description": "Issue assignees SCMId", - "args": [ - { - "name": "login", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -11826,7 +13100,7 @@ "defaultValue": null }, { - "name": "name", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -11843,7 +13117,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_SCMProviderOrdering", "ofType": null } }, @@ -11870,11 +13144,11 @@ "defaultValue": null }, { - "name": "avatar", + "name": "providerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "defaultValue": null @@ -11885,7 +13159,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "SCMProvider", "ofType": null } }, @@ -11893,51 +13167,8 @@ "deprecationReason": null }, { - "name": "lastAssignedBy", - "description": "Issue 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": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comments", - "description": "Issue comments Comment", + "name": "chatTeams", + "description": "Team chatTeams ChatTeam", "args": [ { "name": "id", @@ -11950,47 +13181,7 @@ "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", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -12000,7 +13191,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -12010,7 +13201,7 @@ "defaultValue": null }, { - "name": "path", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -12020,7 +13211,7 @@ "defaultValue": null }, { - "name": "position", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -12030,11 +13221,11 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null @@ -12047,7 +13238,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_ChatTeamOrdering", "ofType": null } }, @@ -12074,11 +13265,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "emailDomain", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -12089,7 +13280,34 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "ChatTeam", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "configuration", + "description": "", + "args": [ + { + "name": "namespace", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", "ofType": null } }, @@ -12104,8 +13322,8 @@ }, { "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", "fields": null, "inputFields": null, "interfaces": null, @@ -12113,109 +13331,108 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "Repo", - "description": "Repo-Node", - "fields": [ + "kind": "ENUM", + "name": "_PersonOrdering", + "description": "Ordering Enum for Person", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": "owner of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "forename_asc", + "description": "Ascending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "allowRebaseMerge", - "description": "allowRebaseMerge of Repo", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "forename_desc", + "description": "Descending sort for forename", "isDeprecated": false, "deprecationReason": null }, { - "name": "allowSquashMerge", - "description": "allowSquashMerge of Repo", + "name": "surname_asc", + "description": "Ascending sort for surname", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "surname_desc", + "description": "Descending sort for surname", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Person", + "description": "Person-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "allowMergeCommit", - "description": "allowMergeCommit of Repo", + "name": "id", + "description": "id of Person", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repoId", - "description": "repoId of Repo", + "name": "forename", + "description": "forename of Person", "args": [], "type": { "kind": "SCALAR", @@ -12226,8 +13443,8 @@ "deprecationReason": null }, { - "name": "gitHubId", - "description": "gitHubId of Repo", + "name": "surname", + "description": "surname of Person", "args": [], "type": { "kind": "SCALAR", @@ -12238,8 +13455,8 @@ "deprecationReason": null }, { - "name": "defaultBranch", - "description": "defaultBranch of Repo", + "name": "name", + "description": "name of Person", "args": [], "type": { "kind": "SCALAR", @@ -12250,21 +13467,38 @@ "deprecationReason": null }, { - "name": "labels", - "description": "Repo labels Label", + "name": "resourceUsers", + "description": "", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scmId", + "description": "Person scmId SCMId", + "args": [ { - "name": "name", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -12274,7 +13508,7 @@ "defaultValue": null }, { - "name": "default", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -12284,41 +13518,40 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_LabelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId", + "description": "Person gitHubId GitHubId", + "args": [ { - "name": "offset", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "color", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -12329,20 +13562,16 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Label", - "ofType": null - } + "kind": "OBJECT", + "name": "GitHubId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "Repo channels ChatChannel", + "name": "chatId", + "description": "Person chatId ChatId", "args": [ { "name": "id", @@ -12355,7 +13584,7 @@ "defaultValue": null }, { - "name": "name", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -12365,7 +13594,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -12375,7 +13604,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -12385,7 +13614,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -12395,112 +13624,51 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "timezoneLabel", "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": "Repo org 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": "ownerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "OwnerType", + "name": "String", "ofType": null }, "defaultValue": null @@ -12508,130 +13676,16 @@ ], "type": { "kind": "OBJECT", - "name": "Org", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "issue", - "description": "Repo issue Issue", + "name": "emails", + "description": "Person emails Email", "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "action", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -12640,7 +13694,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -12667,7 +13721,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -12682,7 +13736,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "Email", "ofType": null } }, @@ -12690,56 +13744,12 @@ "deprecationReason": null }, { - "name": "issues", - "description": "Repo issues Issue", + "name": "team", + "description": "Person team Team", "args": [ { "name": "id", "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", "type": { "kind": "SCALAR", "name": "String", @@ -12748,7 +13758,7 @@ "defaultValue": null }, { - "name": "body", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -12758,17 +13768,7 @@ "defaultValue": null }, { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -12778,7 +13778,7 @@ "defaultValue": null }, { - "name": "action", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -12796,68 +13796,37 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_IssueOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ResourceUser", + "description": "", + "fields": [ + { + "name": "_typenames", + "description": "", + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Issue", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -12865,8 +13834,48 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "Repo pullRequest PullRequest", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "", "args": [ { "name": "id", @@ -12877,212 +13886,14 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PullRequest", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -13090,210 +13901,68 @@ "deprecationReason": null }, { - "name": "pullRequests", - "description": "Repo pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "body", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "branchName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "closedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null + "name": "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": "OBJECT", - "name": "PullRequest", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -13301,100 +13970,15 @@ "deprecationReason": null }, { - "name": "branches", - "description": "Repo branches Branch", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_BranchOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "_id", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Branch", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -13402,60 +13986,31 @@ "deprecationReason": null }, { - "name": "links", - "description": "Repo links ChannelLink", - "args": [ - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", + "kind": "INTERFACE", + "name": "ResourceUser", "ofType": null } }, @@ -13464,101 +14019,77 @@ } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_LabelOrdering", - "description": "Ordering Enum for Label", - "fields": null, - "inputFields": null, "interfaces": null, - "enumValues": [ + "enumValues": null, + "possibleTypes": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "OAuthToken", + "ofType": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "Password", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "description": "", + "fields": [ { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_asc", - "description": "Ascending sort for default", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default_desc", - "description": "Descending sort for default", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "color_asc", - "description": "Ascending sort for color", + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "color_desc", - "description": "Descending sort for color", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Label", - "description": "Label-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "the url of the Label", + "name": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -13569,20 +14100,24 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Label", + "name": "team", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Label", + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -13593,32 +14128,32 @@ "deprecationReason": null }, { - "name": "default", - "description": "default of Label", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "color", - "description": "color of Label", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Label repo Repo", + "name": "webhooks", + "description": "", "args": [ { "name": "id", @@ -13629,215 +14164,116 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "description": "Ordering Enum for ChatChannel", - "fields": null, - "inputFields": null, "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "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 - }, + "enumValues": null, + "possibleTypes": [ { - "name": "provider_desc", - "description": "Descending sort for provider", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null }, { - "name": "normalizedName_asc", - "description": "Ascending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null }, { - "name": "normalizedName_desc", - "description": "Descending sort for normalizedName", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "DockerRegistryProvider", + "ofType": null }, { - "name": "channelId_asc", - "description": "Ascending sort for channelId", - "isDeprecated": false, - "deprecationReason": null + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "ofType": null }, { - "name": "channelId_desc", - "description": "Descending sort for channelId", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "ResourceProviderState", + "description": "", + "fields": [ { - "name": "isDefault_asc", - "description": "Ascending sort for isDefault", + "name": "error", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDefault_desc", - "description": "Descending sort for isDefault", + "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": "botInvitedSelf_asc", - "description": "Ascending sort for botInvitedSelf", + "name": "converged", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "botInvitedSelf_desc", - "description": "Descending sort for botInvitedSelf", + "name": "unconverged", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "archived_asc", - "description": "Ascending sort for archived", + "name": "misconfigured", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "archived_desc", - "description": "Descending sort for archived", + "name": "unauthorized", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -13846,233 +14282,320 @@ }, { "kind": "OBJECT", - "name": "ChatChannel", - "description": "ChatChannel-Node", + "name": "Webhook", + "description": "Webhook-Node", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "name", + "description": "just a name", "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": "id", - "description": "id of ChatChannel", + "description": "id of Webhook", "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": "name", - "description": "name of ChatChannel", + "name": "url", + "description": "url of Webhook", "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": "provider", - "description": "provider of ChatChannel", + "name": "authType", + "description": "type of validation", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WebhookAuthType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "normalizedName", - "description": "normalizedName of ChatChannel", + "name": "provider", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channelId", - "description": "channelId of ChatChannel", + "name": "tags", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtomistKeyValuePair", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDefault", - "description": "isDefault of ChatChannel", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "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": "botInvitedSelf", - "description": "botInvitedSelf of ChatChannel", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, + "name": "hmac_sha1", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "archived", - "description": "archived of ChatChannel", + "name": "none", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistKeyValuePair", + "description": "", + "fields": [ + { + "name": "name", + "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": "createdBy", - "description": "ChatChannel createdBy 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 + "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": "ChatId", + "name": "OAuthToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repos", - "description": "ChatChannel repos Repo", + "name": "provider", + "description": "", "args": [ { "name": "id", @@ -14083,128 +14606,14 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_RepoOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "SCMProvider", "ofType": null } }, @@ -14212,8 +14621,8 @@ "deprecationReason": null }, { - "name": "links", - "description": "ChatChannel links ChannelLink", + "name": "emails", + "description": "SCMId emails Email", "args": [ { "name": "orderBy", @@ -14223,7 +14632,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChannelLinkOrdering", + "name": "_EmailOrdering", "ofType": null } }, @@ -14250,11 +14659,11 @@ "defaultValue": null }, { - "name": "id", + "name": "address", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -14265,7 +14674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChannelLink", + "name": "Email", "ofType": null } }, @@ -14273,8 +14682,8 @@ "deprecationReason": null }, { - "name": "members", - "description": "ChatChannel members ChatId", + "name": "person", + "description": "SCMId person Person", "args": [ { "name": "id", @@ -14287,67 +14696,7 @@ "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": "forename", "description": "", "type": { "kind": "SCALAR", @@ -14357,7 +14706,7 @@ "defaultValue": null }, { - "name": "isBot", + "name": "surname", "description": "", "type": { "kind": "SCALAR", @@ -14367,41 +14716,7 @@ "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": "name", "description": "", "type": { "kind": "SCALAR", @@ -14411,12 +14726,41 @@ "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": "ChatId", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -14424,126 +14768,161 @@ "deprecationReason": null }, { - "name": "team", - "description": "ChatChannel team ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tenantId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "name": "_id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null + "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": 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 + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ChatId", - "description": "ChatId-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": "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": "name", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -14554,8 +14933,8 @@ "deprecationReason": null }, { - "name": "userId", - "description": "userId of ChatId", + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -14566,99 +14945,111 @@ "deprecationReason": null }, { - "name": "provider", - "description": "provider of ChatId", + "name": "providerId", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAtomistBot", - "description": "isAtomistBot of ChatId", + "name": "private", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isOwner", - "description": "isOwner of ChatId", + "name": "apiUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isPrimaryOwner", - "description": "isPrimaryOwner of ChatId", + "name": "gitUrl", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isAdmin", - "description": "isAdmin of ChatId", + "name": "providerType", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot", - "description": "isBot of ChatId", + "name": "targetConfiguration", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SCMProviderSpec", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel", - "description": "timezoneLabel of ChatId", + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channels", - "description": "ChatId channels ChatChannel", + "name": "team", + "description": "", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null @@ -14674,7 +15065,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -14684,7 +15075,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -14694,7 +15085,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -14702,23 +15093,30 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "isDefault", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "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": "botInvitedSelf", + "name": "owner", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null @@ -14731,7 +15129,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatChannelOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -14758,11 +15156,11 @@ "defaultValue": null }, { - "name": "archived", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -14773,7 +15171,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Org", "ofType": null } }, @@ -14781,15 +15179,39 @@ "deprecationReason": null }, { - "name": "emails", - "description": "ChatId emails Email", + "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", + "description": "", "args": [ { - "name": "address", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -14800,256 +15222,166 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "Webhook", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "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": "ENUM", + "name": "ProviderType", + "description": "Enum for ProviderType", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "bitbucket_cloud", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "chatTeam", - "description": "ChatId chatTeam ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tenantId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatTeam", - "ofType": null - }, + "name": "github_com", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "channelsCreated", - "description": "ChatId channelsCreated ChatChannel", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "normalizedName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isDefault", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "archived", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "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": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, "isDeprecated": false, "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": "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SCMProviderRepoSpec", + "description": "", + "fields": [ + { + "name": "ownerSpec", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "Person", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preferences", - "description": "Return a user's preferences", + "name": "nameSpec", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UserPreference", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -15062,14 +15394,96 @@ "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": "Email", - "description": "Email-Node", + "name": "Org", + "description": "", "fields": [ { "name": "_id", - "description": "internal node id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15080,8 +15494,8 @@ "deprecationReason": null }, { - "name": "address", - "description": "address of Email", + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15092,21 +15506,93 @@ "deprecationReason": null }, { - "name": "scmId", - "description": "Email scmId SCMId", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType", + "description": "", + "args": [], + "type": { + "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 + }, + { + "name": "description", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -15116,7 +15602,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -15124,22 +15610,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitHubId", - "description": "Email gitHubId GitHubId", - "args": [ + }, { - "name": "login", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -15149,7 +15622,7 @@ "defaultValue": null }, { - "name": "name", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -15157,19 +15630,29 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "GitHubId", + "name": "GitHubProvider", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "chatId", - "description": "Email chatId ChatId", + "name": "scmProvider", + "description": "", "args": [ { "name": "id", @@ -15182,7 +15665,7 @@ "defaultValue": null }, { - "name": "screenName", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -15192,7 +15675,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -15202,7 +15685,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -15212,7 +15695,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "gitUrl", "description": "", "type": { "kind": "SCALAR", @@ -15222,17 +15705,40 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "providerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "", + "args": [ + { + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -15242,7 +15748,7 @@ "defaultValue": null }, { - "name": "isAdmin", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -15252,50 +15758,37 @@ "defaultValue": null }, { - "name": "isBot", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "person", - "description": "Email person Person", - "args": [ + }, { - "name": "id", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "forename", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -15305,7 +15798,7 @@ "defaultValue": null }, { - "name": "surname", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -15315,125 +15808,56 @@ "defaultValue": null }, { - "name": "name", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_RepoOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "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": "OBJECT", - "name": "SCMId", - "description": "SCMId-Node", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_id", - "description": "internal node id", - "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": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "Repo", "ofType": null } }, @@ -15441,9 +15865,89 @@ "deprecationReason": null }, { - "name": "emails", - "description": "SCMId emails Email", + "name": "repos", + "description": "", "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowRebaseMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowSquashMerge", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -15452,7 +15956,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_RepoOrdering", "ofType": null } }, @@ -15479,7 +15983,7 @@ "defaultValue": null }, { - "name": "address", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -15494,7 +15998,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "Repo", "ofType": null } }, @@ -15502,8 +16006,8 @@ "deprecationReason": null }, { - "name": "person", - "description": "SCMId person Person", + "name": "chatTeam", + "description": "", "args": [ { "name": "id", @@ -15516,7 +16020,7 @@ "defaultValue": null }, { - "name": "forename", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -15526,7 +16030,70 @@ "defaultValue": null }, { - "name": "surname", + "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 + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team", + "description": "", + "args": [ + { + "name": "id", "description": "", "type": { "kind": "SCALAR", @@ -15544,11 +16111,41 @@ "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": "Person", + "name": "Team", "ofType": null }, "isDeprecated": false, @@ -15556,40 +16153,18 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INTERFACE", - "name": "ResourceUser", - "description": "", + "kind": "OBJECT", + "name": "GitHubProvider", + "description": "GitHubProvider-Node", "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "_id", - "description": "", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", @@ -15600,36 +16175,32 @@ "deprecationReason": null }, { - "name": "credential", - "description": "", + "name": "id", + "description": "id of GitHubProvider", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "", + "name": "url", + "description": "url of GitHubProvider", "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": "login", - "description": "", + "name": "providerId", + "description": "providerId of GitHubProvider", "args": [], "type": { "kind": "NON_NULL", @@ -15642,119 +16213,29 @@ }, "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": "GenericResourceUser", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SystemAccount", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "Credential", - "description": "", - "fields": [ - { - "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": "", + "name": "private", + "description": "private is this provider reachable on the public internet", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "OAuthToken", - "ofType": null }, { - "kind": "OBJECT", - "name": "Password", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "description": "", - "fields": [ - { - "name": "_id", - "description": "", + "name": "apiUrl", + "description": "apiUrl of GitHubProvider", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -15762,15 +16243,15 @@ "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "gitUrl", + "description": "gitUrl of GitHubProvider", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -15778,12 +16259,12 @@ "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "providerType", + "description": "providerType of GitHubProvider", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null }, "isDeprecated": false, @@ -15791,113 +16272,212 @@ }, { "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": "", + "description": "GitHubProvider team Team", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "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": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "Team", + "ofType": null }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": null, + "interfaces": [], "enumValues": null, - "possibleTypes": [ + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_RepoOrdering", + "description": "Ordering Enum for Repo", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null }, { - "kind": "OBJECT", - "name": "DockerRegistryProvider", - "ofType": null + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null }, { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", - "ofType": null + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_asc", + "description": "Ascending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_desc", + "description": "Descending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowRebaseMerge_asc", + "description": "Ascending sort for allowRebaseMerge", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowRebaseMerge_desc", + "description": "Descending sort for allowRebaseMerge", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowSquashMerge_asc", + "description": "Ascending sort for allowSquashMerge", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowSquashMerge_desc", + "description": "Descending sort for allowSquashMerge", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowMergeCommit_asc", + "description": "Ascending sort for allowMergeCommit", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowMergeCommit_desc", + "description": "Descending sort for allowMergeCommit", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repoId_asc", + "description": "Ascending sort for repoId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repoId_desc", + "description": "Descending sort for repoId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId_asc", + "description": "Ascending sort for gitHubId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitHubId_desc", + "description": "Descending sort for gitHubId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultBranch_asc", + "description": "Ascending sort for defaultBranch", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultBranch_desc", + "description": "Descending sort for defaultBranch", + "isDeprecated": false, + "deprecationReason": null } - ] + ], + "possibleTypes": null }, { "kind": "OBJECT", - "name": "Team", - "description": "Team-Node", + "name": "Repo", + "description": "Repo-Node", "fields": [ { "name": "_id", - "description": "internal node id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15909,7 +16489,7 @@ }, { "name": "url", - "description": "the URL of the Team", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15921,7 +16501,19 @@ }, { "name": "id", - "description": "id of Team", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15933,7 +16525,7 @@ }, { "name": "name", - "description": "name of Team", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15944,8 +16536,44 @@ "deprecationReason": null }, { - "name": "description", - "description": "description of Team", + "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", @@ -15956,8 +16584,8 @@ "deprecationReason": null }, { - "name": "iconUrl", - "description": "iconUrl of Team", + "name": "gitHubId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15968,8 +16596,8 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Team", + "name": "defaultBranch", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -15980,8 +16608,8 @@ "deprecationReason": null }, { - "name": "persons", - "description": "Team persons Person", + "name": "labels", + "description": "", "args": [ { "name": "id", @@ -15994,7 +16622,7 @@ "defaultValue": null }, { - "name": "forename", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -16004,7 +16632,7 @@ "defaultValue": null }, { - "name": "surname", + "name": "default", "description": "", "type": { "kind": "SCALAR", @@ -16021,7 +16649,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PersonOrdering", + "name": "_LabelOrdering", "ofType": null } }, @@ -16048,7 +16676,7 @@ "defaultValue": null }, { - "name": "name", + "name": "color", "description": "", "type": { "kind": "SCALAR", @@ -16063,7 +16691,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Person", + "name": "Label", "ofType": null } }, @@ -16071,8 +16699,8 @@ "deprecationReason": null }, { - "name": "orgs", - "description": "Team orgs Org", + "name": "channels", + "description": "", "args": [ { "name": "id", @@ -16085,7 +16713,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -16095,122 +16723,95 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_OrgOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ownerType", + "name": "channelId", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", "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": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "providerId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatChannelOrdering", + "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": "archived", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -16221,7 +16822,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubProvider", + "name": "ChatChannel", "ofType": null } }, @@ -16229,8 +16830,8 @@ "deprecationReason": null }, { - "name": "scmProviders", - "description": "Team scmProviders SCMProvider", + "name": "org", + "description": "", "args": [ { "name": "id", @@ -16243,7 +16844,7 @@ "defaultValue": null }, { - "name": "url", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -16253,27 +16854,50 @@ "defaultValue": null }, { - "name": "providerId", + "name": "ownerType", + "description": "", + "type": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "", + "args": [ + { + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "apiUrl", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "gitUrl", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -16283,78 +16907,51 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", + "name": "title", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "providerType", + "name": "state", "description": "", "type": { "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatTeams", - "description": "Team chatTeams ChatTeam", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", + "name": "IssueState", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -16364,7 +16961,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -16374,7 +16971,7 @@ "defaultValue": null }, { - "name": "tenantId", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -16384,7 +16981,7 @@ "defaultValue": null }, { - "name": "domain", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -16393,16 +16990,6 @@ }, "defaultValue": null }, - { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, { "name": "orderBy", "description": "", @@ -16411,7 +16998,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatTeamOrdering", + "name": "_IssueOrdering", "ofType": null } }, @@ -16438,7 +17025,7 @@ "defaultValue": null }, { - "name": "emailDomain", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -16453,192 +17040,33 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatTeam", + "name": "Issue", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PersonOrdering", - "description": "Ordering Enum for Person", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename_asc", - "description": "Ascending sort for forename", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename_desc", - "description": "Descending sort for forename", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname_asc", - "description": "Ascending sort for surname", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname_desc", - "description": "Descending sort for surname", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Person", - "description": "Person-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 Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "forename", - "description": "forename of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "surname", - "description": "surname of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Person", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "resourceUsers", + "name": "issues", "description": "", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "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": "login", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null @@ -16654,7 +17082,21 @@ "defaultValue": null }, { - "name": "avatar", + "name": "names", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -16662,22 +17104,9 @@ "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": "body", "description": "", "type": { "kind": "SCALAR", @@ -16687,40 +17116,27 @@ "defaultValue": null }, { - "name": "name", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "IssueState", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chatId", - "description": "Person chatId ChatId", - "args": [ + }, { - "name": "id", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "screenName", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -16730,7 +17146,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -16740,7 +17156,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -16750,27 +17166,41 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_IssueOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isOwner", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -16778,19 +17208,46 @@ "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pullRequest", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "isAdmin", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "isBot", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -16800,7 +17257,7 @@ "defaultValue": null }, { - "name": "timezoneLabel", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -16808,83 +17265,53 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emails", - "description": "Person emails Email", - "args": [ + }, { - "name": "orderBy", + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_EmailOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "first", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "state", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "address", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "team", - "description": "Person team Team", - "args": [ + }, { - "name": "id", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -16894,7 +17321,7 @@ "defaultValue": null }, { - "name": "name", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -16904,7 +17331,7 @@ "defaultValue": null }, { - "name": "description", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -16914,7 +17341,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -16932,131 +17359,37 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "preferences", - "description": "Return a person's preferences", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PersonPreference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GitHubId", - "description": "GitHubId-Node", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_id", - "description": "internal node id", - "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": [], - "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": "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": "", @@ -17065,7 +17398,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -17092,11 +17425,11 @@ "defaultValue": null }, { - "name": "address", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -17107,7 +17440,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "PullRequest", "ofType": null } }, @@ -17115,8 +17448,8 @@ "deprecationReason": null }, { - "name": "person", - "description": "GitHubId person Person", + "name": "pullRequests", + "description": "", "args": [ { "name": "id", @@ -17129,17 +17462,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", @@ -17157,75 +17490,168 @@ "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": "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": "_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", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "PullRequest", "ofType": null } }, @@ -17233,88 +17659,60 @@ "deprecationReason": null }, { - "name": "scopes", + "name": "pushes", "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_PushOrdering", "ofType": null } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMProvider", - "description": "SCMProvider-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "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 - }, - { - "name": "id", - "description": "id of SCMProvider", - "args": [], + ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Push", "ofType": null } }, @@ -17322,123 +17720,15 @@ "deprecationReason": null }, { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "url of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": "providerId of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "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 SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl", - "description": "gitUrl of SCMProvider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerType", - "description": "providerType of SCMProvider", - "args": [], - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "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", - "description": "SCMProvider team Team", + "name": "branches", + "description": "Repo branches Branch", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -17454,7 +17744,7 @@ "defaultValue": null }, { - "name": "description", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -17464,17 +17754,51 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "isRemote", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BranchOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "remoteRepoHtmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -17485,11 +17809,11 @@ } ], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "Branch", "ofType": null } }, @@ -17497,33 +17821,43 @@ "deprecationReason": null }, { - "name": "authProviderId", - "description": "ID of the auth provider protecting this resource (same as providerId for github.com)", - "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", - "description": "any webooks associated with this provider", + "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": "", @@ -17540,7 +17874,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Webhook", + "name": "ChannelLink", "ofType": null } }, @@ -17549,51 +17883,75 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ProviderType", - "description": "Enum for ProviderType", + "name": "_LabelOrdering", + "description": "Ordering Enum for Label", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "bitbucket_cloud", - "description": "Value for bitbucket_cloud", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "github_com", - "description": "Value for github_com", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "ghe", - "description": "Value for ghe", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "bitbucket", - "description": "Value for bitbucket", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitlab", - "description": "Value for gitlab", + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "default_asc", + "description": "Ascending sort for default", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "default_desc", + "description": "Descending sort for default", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color_asc", + "description": "Ascending sort for color", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "color_desc", + "description": "Descending sort for color", "isDeprecated": false, "deprecationReason": null } @@ -17602,114 +17960,60 @@ }, { "kind": "OBJECT", - "name": "SCMProviderSpec", - "description": "", + "name": "Label", + "description": "Label-Node", "fields": [ { - "name": "orgSpecs", - "description": "", + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repoSpecs", - "description": "", + "name": "url", + "description": "the url of the Label", "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 - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SCMProviderRepoSpec", - "description": "", - "fields": [ + }, { - "name": "ownerSpec", - "description": "", + "name": "id", + "description": "id of Label", "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": "nameSpec", - "description": "", + "name": "name", + "description": "name of Label", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResourceProviderState", - "description": "", - "fields": [ + }, { - "name": "error", - "description": "", + "name": "default", + "description": "default of Label", "args": [], "type": { "kind": "SCALAR", @@ -17720,12 +18024,115 @@ "deprecationReason": null }, { - "name": "name", - "description": "", + "name": "color", + "description": "color of Label", "args": [], "type": { - "kind": "ENUM", - "name": "ResourceProviderStateName", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "Label 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, @@ -17739,33 +18146,117 @@ }, { "kind": "ENUM", - "name": "ResourceProviderStateName", - "description": "", + "name": "_ChatChannelOrdering", + "description": "Ordering Enum for ChatChannel", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "converged", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "unconverged", - "description": "", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "misconfigured", - "description": "", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "unauthorized", - "description": "", + "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 } @@ -17774,271 +18265,72 @@ }, { "kind": "OBJECT", - "name": "Webhook", - "description": "Webhook-Node", + "name": "ChatChannel", + "description": "ChatChannel-Node", "fields": [ { - "name": "name", - "description": "just a name", + "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": "id", - "description": "id of Webhook", + "description": "id of ChatChannel", "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": "url", - "description": "url of Webhook", + "name": "name", + "description": "name of ChatChannel", "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": "authType", - "description": "type of validation", + "name": "provider", + "description": "provider of ChatChannel", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "", + "name": "normalizedName", + "description": "normalizedName of ChatChannel", "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", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AtomistKeyValuePair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WebhookAuthType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "hmac_sha1", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "none", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AtomistKeyValuePair", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WebhookState", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "enabled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "disabled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_EmailOrdering", - "description": "Ordering Enum for Email", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_asc", - "description": "Ascending sort for address", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "address_desc", - "description": "Descending sort for address", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PersonPreference", - "description": "A person's preferences as key/value pairs", - "fields": [ - { - "name": "name", - "description": "The name of the preference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "The value of the preference", + "name": "channelId", + "description": "channelId of ChatChannel", "args": [], "type": { "kind": "SCALAR", @@ -18047,163 +18339,46 @@ }, "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": "Enum for OwnerType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "user", - "description": "Value for user", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": "Value for organization", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Org", - "description": "Org-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 Org", + "name": "isDefault", + "description": "isDefault of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Org", + "name": "botInvitedSelf", + "description": "botInvitedSelf of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": "owner of Org", + "name": "archived", + "description": "archived of ChatChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerType", - "description": "ownerType of Org", - "args": [], - "type": { - "kind": "ENUM", - "name": "OwnerType", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", - "description": "Org provider GitHubProvider", + "name": "createdBy", + "description": "ChatChannel createdBy ChatId", "args": [ { "name": "id", @@ -18216,7 +18391,7 @@ "defaultValue": null }, { - "name": "url", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -18226,7 +18401,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -18236,7 +18411,7 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -18246,7 +18421,7 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -18256,40 +18431,17 @@ "defaultValue": null }, { - "name": "providerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GitHubProvider", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scmProvider", - "description": "Org scmProvider SCMProvider", - "args": [ - { - "name": "id", + "name": "isOwner", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "isPrimaryOwner", "description": "", "type": { "kind": "SCALAR", @@ -18299,7 +18451,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -18309,7 +18461,7 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -18319,7 +18471,7 @@ "defaultValue": null }, { - "name": "gitUrl", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -18327,29 +18479,19 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "providerType", - "description": "", - "type": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - }, - "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": "Org repo Repo", + "name": "repos", + "description": "ChatChannel repos Repo", "args": [ { "name": "id", @@ -18489,8 +18631,69 @@ "deprecationReason": null }, { - "name": "repos", - "description": "Org repos Repo", + "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", @@ -18503,7 +18706,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -18513,7 +18716,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -18523,37 +18726,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", @@ -18563,7 +18766,17 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isAdmin", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -18580,7 +18793,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_ChatIdOrdering", "ofType": null } }, @@ -18607,7 +18820,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "timezoneLabel", "description": "", "type": { "kind": "SCALAR", @@ -18622,7 +18835,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "ChatId", "ofType": null } }, @@ -18630,8 +18843,8 @@ "deprecationReason": null }, { - "name": "chatTeam", - "description": "Org chatTeam ChatTeam", + "name": "team", + "description": "ChatChannel team ChatTeam", "args": [ { "name": "id", @@ -18711,108 +18924,69 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatId", + "description": "ChatId-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "team", - "description": "Org 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 - } - ], + "name": "id", + "description": "id of ChatId", + "args": [], "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "ID", "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", + "name": "screenName", + "description": "screenName of ChatId", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of GitHubProvider", + "name": "userId", + "description": "userId of ChatId", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "url of GitHubProvider", + "name": "provider", + "description": "provider of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -18823,8 +18997,8 @@ "deprecationReason": null }, { - "name": "providerId", - "description": "providerId of GitHubProvider", + "name": "isAtomistBot", + "description": "isAtomistBot of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -18835,20 +19009,20 @@ "deprecationReason": null }, { - "name": "private", - "description": "private is this provider reachable on the public internet", + "name": "isOwner", + "description": "isOwner of ChatId", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl", - "description": "apiUrl of GitHubProvider", + "name": "isPrimaryOwner", + "description": "isPrimaryOwner of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -18859,8 +19033,8 @@ "deprecationReason": null }, { - "name": "gitUrl", - "description": "gitUrl of GitHubProvider", + "name": "isAdmin", + "description": "isAdmin of ChatId", "args": [], "type": { "kind": "SCALAR", @@ -18871,27 +19045,39 @@ "deprecationReason": null }, { - "name": "providerType", - "description": "providerType of GitHubProvider", + "name": "isBot", + "description": "isBot of ChatId", "args": [], "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "GitHubProvider team Team", + "name": "timezoneLabel", + "description": "timezoneLabel of ChatId", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channels", + "description": "ChatId channels ChatChannel", "args": [ { "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -18907,7 +19093,7 @@ "defaultValue": null }, { - "name": "description", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -18917,7 +19103,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -18927,7 +19113,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -18935,286 +19121,23 @@ "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": "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", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tenantId", - "description": "This ChatTeams tenantId if available for this provider", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "serviceUrl", - "description": "This is the url for accessing the API on this ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain", - "description": "domain of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messageCount", - "description": "messageCount of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "emailDomain", - "description": "emailDomain of ChatTeam", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orgs", - "description": "ChatTeam orgs Org", - "args": [ + }, { - "name": "id", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "owner", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -19227,7 +19150,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -19254,11 +19177,11 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "archived", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -19269,7 +19192,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Org", + "name": "ChatChannel", "ofType": null } }, @@ -19277,21 +19200,11 @@ "deprecationReason": null }, { - "name": "channels", - "description": "ChatTeam channels ChatChannel", + "name": "emails", + "description": "ChatId emails Email", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "address", "description": "", "type": { "kind": "SCALAR", @@ -19299,19 +19212,36 @@ "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": "provider", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "normalizedName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -19321,7 +19251,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -19331,85 +19261,57 @@ "defaultValue": null }, { - "name": "isDefault", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "botInvitedSelf", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatChannelOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", + "name": "domain", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "messageCount", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "emailDomain", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - } + "kind": "OBJECT", + "name": "ChatTeam", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "members", - "description": "ChatTeam members ChatId", + "name": "channelsCreated", + "description": "ChatId channelsCreated ChatChannel", "args": [ { "name": "id", @@ -19422,7 +19324,7 @@ "defaultValue": null }, { - "name": "screenName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -19432,7 +19334,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -19442,7 +19344,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -19452,7 +19354,7 @@ "defaultValue": null }, { - "name": "isAtomistBot", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -19462,37 +19364,64 @@ "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": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null - }, - { - "name": "isBot", + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "person", + "description": "ChatId person Person", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -19502,41 +19431,111 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "surname", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ChatIdOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preferences", + "description": "Return a user's preferences", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Email", + "description": "Email-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": "address of Email", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scmId", + "description": "Email scmId SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timezoneLabel", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -19547,24 +19546,63 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChatId", - "ofType": null + "kind": "OBJECT", + "name": "SCMId", + "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 } + ], + "type": { + "kind": "OBJECT", + "name": "GitHubId", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "ChatTeam team Team", + "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", @@ -19573,7 +19611,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -19583,7 +19621,7 @@ "defaultValue": null }, { - "name": "description", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -19593,7 +19631,7 @@ "defaultValue": null }, { - "name": "iconUrl", + "name": "isAtomistBot", "description": "", "type": { "kind": "SCALAR", @@ -19603,7 +19641,47 @@ "defaultValue": null }, { - "name": "createdAt", + "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", @@ -19615,24 +19693,61 @@ ], "type": { "kind": "OBJECT", - "name": "Team", + "name": "ChatId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "preferences", - "description": "Return a chat team's preferences", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TeamPreference", - "ofType": null + "name": "person", + "description": "Email person Person", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "forename", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "surname", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "Person", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -19644,156 +19759,73 @@ "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": "GitHubId", + "description": "GitHubId-Node", + "fields": [ { - "name": "isAdmin_desc", - "description": "Descending sort for isAdmin", + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_asc", - "description": "Ascending sort for isBot", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "isBot_desc", - "description": "Descending sort for isBot", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timezoneLabel_asc", - "description": "Ascending sort for timezoneLabel", + "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": "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", + "description": "name of GitHubId", "args": [], "type": { "kind": "SCALAR", @@ -19804,122 +19836,174 @@ "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "OAuthToken", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "description": "Ordering Enum for SCMProvider", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_asc", - "description": "Ascending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_desc", - "description": "Descending sort for url", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_asc", - "description": "Ascending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId_desc", - "description": "Descending sort for providerId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", + "name": "provider", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", + "name": "emails", + "description": "GitHubId emails Email", + "args": [ + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_EmailOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "address", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Email", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_asc", - "description": "Ascending sort for providerType", + "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": [ { - "name": "providerType_desc", - "description": "Descending sort for providerType", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "_ChatTeamOrdering", - "description": "Ordering Enum for ChatTeam", + "name": "_EmailOrdering", + "description": "Ordering Enum for Email", "fields": null, "inputFields": null, "interfaces": null, @@ -19937,88 +20021,98 @@ "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", + "name": "address_asc", + "description": "Ascending sort for address", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", + "name": "address_desc", + "description": "Descending sort for address", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChatTeam", + "description": "ChatTeam-Node", + "fields": [ { - "name": "domain_asc", - "description": "Ascending sort for domain", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "domain_desc", - "description": "Descending sort for domain", + "name": "id", + "description": "id of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "messageCount_asc", - "description": "Ascending sort for messageCount", + "name": "name", + "description": "name of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "messageCount_desc", - "description": "Descending sort for messageCount", + "name": "provider", + "description": "provider of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain_asc", - "description": "Ascending sort for emailDomain", + "name": "tenantId", + "description": "This ChatTeams tenantId if available for this provider", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailDomain_desc", - "description": "Descending sort for emailDomain", - "isDeprecated": false, - "deprecationReason": 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": "serviceUrl", + "description": "This is the url for accessing the API on this ChatTeam", "args": [], "type": { "kind": "SCALAR", @@ -20029,8 +20123,8 @@ "deprecationReason": null }, { - "name": "value", - "description": "The value of the preference", + "name": "domain", + "description": "domain of ChatTeam", "args": [], "type": { "kind": "SCALAR", @@ -20039,80 +20133,58 @@ }, "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": "messageCount", + "description": "messageCount of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "emailDomain", + "description": "emailDomain of ChatTeam", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "state", + "description": "Determines whether or not we have finished ingesting the initial set of ChatChannels and ChatIds", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "ChatTeamState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of ChannelLink", + "name": "initialChatChannelCount", + "description": "The number of ChatChannels to be loaded during initialization.", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "ChannelLink channel ChatChannel", + "name": "orgs", + "description": "ChatTeam orgs Org", "args": [ { "name": "id", @@ -20125,7 +20197,7 @@ "defaultValue": null }, { - "name": "name", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -20135,90 +20207,98 @@ "defaultValue": null }, { - "name": "provider", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_OrgOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "normalizedName", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "channelId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "isDefault", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", + "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", + "args": [ { - "name": "botInvitedSelf", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "ChannelLink repo Repo", - "args": [ + }, { - "name": "id", + "name": "provider", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "owner", + "name": "normalizedName", "description": "", "type": { "kind": "SCALAR", @@ -20228,7 +20308,7 @@ "defaultValue": null }, { - "name": "name", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", @@ -20238,7 +20318,7 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", @@ -20248,7 +20328,7 @@ "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", @@ -20258,298 +20338,563 @@ "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatChannelOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "repoId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatChannel", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "description": "Ordering Enum for PullRequest", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "members", + "description": "ChatTeam members ChatId", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "screenName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isAtomistBot", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isOwner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isPrimaryOwner", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isAdmin", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isBot", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_ChatIdOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timezoneLabel", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChatId", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number_asc", - "description": "Ascending sort for number", + "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", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "number_desc", - "description": "Descending sort for number", + "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, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ChatTeamState", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "prId_asc", - "description": "Ascending sort for prId", + "name": "initializing", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "prId_desc", - "description": "Descending sort for prId", + "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": "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": "body_asc", - "description": "Ascending sort for body", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "body_desc", - "description": "Descending sort for body", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "screenName_asc", + "description": "Ascending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "screenName_desc", + "description": "Descending sort for screenName", "isDeprecated": false, "deprecationReason": null }, { - "name": "merged_asc", - "description": "Ascending sort for merged", + "name": "userId_asc", + "description": "Ascending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "merged_desc", - "description": "Descending sort for merged", + "name": "userId_desc", + "description": "Descending sort for userId", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "provider_asc", + "description": "Ascending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "provider_desc", + "description": "Descending sort for provider", "isDeprecated": false, "deprecationReason": null }, { - "name": "baseBranchName_asc", - "description": "Ascending sort for baseBranchName", + "name": "isAtomistBot_asc", + "description": "Ascending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "baseBranchName_desc", - "description": "Descending sort for baseBranchName", + "name": "isAtomistBot_desc", + "description": "Descending sort for isAtomistBot", "isDeprecated": false, "deprecationReason": null }, { - "name": "branchName_asc", - "description": "Ascending sort for branchName", + "name": "isOwner_asc", + "description": "Ascending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "branchName_desc", - "description": "Descending sort for branchName", + "name": "isOwner_desc", + "description": "Descending sort for isOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_asc", - "description": "Ascending sort for title", + "name": "isPrimaryOwner_asc", + "description": "Ascending sort for isPrimaryOwner", "isDeprecated": false, "deprecationReason": null }, { - "name": "title_desc", - "description": "Descending sort for title", + "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 - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TeamPreference", + "description": "A team's preferences as key/value pairs", + "fields": [ { - "name": "mergedAt_asc", - "description": "Ascending sort for mergedAt", + "name": "name", + "description": "The name of the preference", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergedAt_desc", - "description": "Descending sort for mergedAt", + "name": "value", + "description": "The value of the preference", + "args": [], + "type": { + "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": "mergeStatus_asc", - "description": "Ascending sort for mergeStatus", + "name": "name", + "description": "The name of the preference", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeStatus_desc", - "description": "Descending sort for mergeStatus", + "name": "value", + "description": "The value of the preference", + "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", + "name": "_ChannelLinkOrdering", + "description": "Ordering Enum for ChannelLink", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "can_be_merged", - "description": "Value for can_be_merged", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "unchecked", - "description": "Value for unchecked", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "cannot_be_merged", - "description": "Value for cannot_be_merged", + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null } @@ -20558,8 +20903,8 @@ }, { "kind": "OBJECT", - "name": "PullRequest", - "description": "PullRequest-Node", + "name": "ChannelLink", + "description": "ChannelLink-Node", "fields": [ { "name": "_id", @@ -20573,21 +20918,9 @@ "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", + "description": "id of ChannelLink", "args": [], "type": { "kind": "SCALAR", @@ -20598,104 +20931,447 @@ "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 + "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": "state", - "description": "state of PullRequest", + "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": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "merged", - "description": "merged of PullRequest", + "name": "url", + "description": "the url of the Issue", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of PullRequest", + "name": "id", + "description": "id of Issue", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "baseBranchName", - "description": "baseBranchName of PullRequest", + "name": "number", + "description": "number of Issue", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "branchName", - "description": "branchName of PullRequest", + "name": "name", + "description": "name of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20707,7 +21383,7 @@ }, { "name": "title", - "description": "title of PullRequest", + "description": "title of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20718,8 +21394,8 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of PullRequest", + "name": "body", + "description": "body of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20730,8 +21406,20 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of PullRequest", + "name": "state", + "description": "state of Issue", + "args": [], + "type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20742,8 +21430,8 @@ "deprecationReason": null }, { - "name": "closedAt", - "description": "closedAt of PullRequest", + "name": "action", + "description": "action of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20754,8 +21442,8 @@ "deprecationReason": null }, { - "name": "mergedAt", - "description": "mergedAt of PullRequest", + "name": "createdAt", + "description": "createdAt of Issue", "args": [], "type": { "kind": "SCALAR", @@ -20766,24 +21454,24 @@ "deprecationReason": null }, { - "name": "mergeStatus", - "description": "mergeStatus of PullRequest", + "name": "updatedAt", + "description": "updatedAt of Issue", "args": [], "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "action", - "description": "action of PullRequest", + "name": "closedAt", + "description": "closedAt of Issue", "args": [], "type": { - "kind": "ENUM", - "name": "PullRequestAction", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -20791,7 +21479,7 @@ }, { "name": "repo", - "description": "PullRequest repo Repo", + "description": "Issue repo Repo", "args": [ { "name": "id", @@ -20885,16 +21573,20 @@ } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "head", - "description": "PullRequest head Commit", + "name": "resolvingCommits", + "description": "Issue resolvingCommits Commit", "args": [ { "name": "sha", @@ -20925,65 +21617,60 @@ "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": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "message", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mergeCommit", - "description": "PullRequest mergeCommit Commit", + "name": "openedBy", + "description": "Issue openedBy SCMId", "args": [ { - "name": "sha", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -20993,7 +21680,7 @@ "defaultValue": null }, { - "name": "message", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21003,7 +21690,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -21015,15 +21702,15 @@ ], "type": { "kind": "OBJECT", - "name": "Commit", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "author", - "description": "PullRequest author SCMId", + "name": "closedBy", + "description": "Issue closedBy SCMId", "args": [ { "name": "login", @@ -21065,15 +21752,15 @@ "deprecationReason": null }, { - "name": "merger", - "description": "PullRequest merger SCMId", + "name": "labels", + "description": "Issue labels Label", "args": [ { - "name": "login", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -21089,30 +21776,7 @@ "defaultValue": null }, { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assignees", - "description": "PullRequest assignees SCMId", - "args": [ - { - "name": "login", + "name": "default", "description": "", "type": { "kind": "SCALAR", @@ -21122,7 +21786,7 @@ "defaultValue": null }, { - "name": "name", + "name": "color", "description": "", "type": { "kind": "SCALAR", @@ -21139,7 +21803,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_LabelOrdering", "ofType": null } }, @@ -21164,16 +21828,6 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null } ], "type": { @@ -21181,7 +21835,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "Label", "ofType": null } }, @@ -21189,11 +21843,11 @@ "deprecationReason": null }, { - "name": "commits", - "description": "PullRequest commits Commit", + "name": "assignees", + "description": "Issue assignees SCMId", "args": [ { - "name": "sha", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -21203,7 +21857,7 @@ "defaultValue": null }, { - "name": "message", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21220,7 +21874,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommitOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -21247,7 +21901,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -21262,7 +21916,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Commit", + "name": "SCMId", "ofType": null } }, @@ -21270,21 +21924,11 @@ "deprecationReason": null }, { - "name": "branch", - "description": "PullRequest branch Branch", + "name": "lastAssignedBy", + "description": "Issue lastAssignedBy SCMId", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -21294,7 +21938,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21304,17 +21948,7 @@ "defaultValue": null }, { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -21326,15 +21960,15 @@ ], "type": { "kind": "OBJECT", - "name": "Branch", + "name": "SCMId", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sourceBranch", - "description": "PullRequest sourceBranch Branch", + "name": "comments", + "description": "Issue comments Comment", "args": [ { "name": "id", @@ -21347,7 +21981,7 @@ "defaultValue": null }, { - "name": "name", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -21367,17 +22001,7 @@ "defaultValue": null }, { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -21385,32 +22009,9 @@ "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", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -21420,7 +22021,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "commentId", "description": "", "type": { "kind": "SCALAR", @@ -21430,17 +22031,17 @@ "defaultValue": null }, { - "name": "isRemote", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "remoteRepoHtmlUrl", + "name": "path", "description": "", "type": { "kind": "SCALAR", @@ -21448,32 +22049,9 @@ "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", + "name": "position", "description": "", "type": { "kind": "SCALAR", @@ -21483,7 +22061,7 @@ "defaultValue": null }, { - "name": "default", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -21500,7 +22078,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_LabelOrdering", + "name": "_CommentOrdering", "ofType": null } }, @@ -21527,11 +22105,11 @@ "defaultValue": null }, { - "name": "color", + "name": "commentType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommentCommentType", "ofType": null }, "defaultValue": null @@ -21542,16 +22120,181 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Label", + "name": "Comment", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_CommitOrdering", + "description": "Ordering Enum for Commit", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reviews", - "description": "PullRequest reviews Review", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha_asc", + "description": "Ascending sort for sha", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha_desc", + "description": "Descending sort for sha", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message_asc", + "description": "Ascending sort for message", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message_desc", + "description": "Descending sort for message", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_desc", + "description": "Descending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Commit", + "description": "Commit-Node", + "fields": [ + { + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "the URL of the Commit", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha", + "description": "sha of Commit", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": "message of Commit", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of Commit", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": "Commit email Email", + "args": [ + { + "name": "address", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Email", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "builds", + "description": "Commit builds Build", "args": [ { "name": "id", @@ -21564,7 +22307,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "buildId", "description": "", "type": { "kind": "SCALAR", @@ -21574,7 +22317,17 @@ "defaultValue": null }, { - "name": "reviewId", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21584,7 +22337,17 @@ "defaultValue": null }, { - "name": "body", + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -21594,17 +22357,27 @@ "defaultValue": null }, { - "name": "state", + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", "description": "", "type": { "kind": "ENUM", - "name": "ReviewState", + "name": "BuildTrigger", "ofType": null }, "defaultValue": null }, { - "name": "submittedAt", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -21614,41 +22387,37 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "pullRequestNumber", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "startedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "finishedAt", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "htmlUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -21656,26 +22425,9 @@ "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", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -21685,7 +22437,17 @@ "defaultValue": null }, { - "name": "name", + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", "description": "", "type": { "kind": "SCALAR", @@ -21702,7 +22464,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_BuildOrdering", "ofType": null } }, @@ -21729,7 +22491,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -21744,7 +22506,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "Build", "ofType": null } }, @@ -21752,31 +22514,118 @@ "deprecationReason": null }, { - "name": "lastAssignedBy", - "description": "PullRequest lastAssignedBy SCMId", + "name": "pipelines", + "description": "Pipelines associated with this commit if applicable", "args": [ { - "name": "login", + "name": "pipelineId", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pipeline", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "Commit repo Repo", + "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "avatar", + "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", @@ -21788,28 +22637,28 @@ ], "type": { "kind": "OBJECT", - "name": "SCMId", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "comments", - "description": "PullRequest comments Comment", + "name": "author", + "description": "Commit author SCMId", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21819,7 +22668,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -21827,9 +22676,22 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "committer", + "description": "Commit committer SCMId", + "args": [ { - "name": "createdAt", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -21839,7 +22701,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21849,7 +22711,7 @@ "defaultValue": null }, { - "name": "commentId", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -21857,19 +22719,32 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tags", + "description": "Commit tags Tag", + "args": [ { - "name": "gitHubId", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21879,7 +22754,7 @@ "defaultValue": null }, { - "name": "position", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -21889,7 +22764,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "ref", "description": "", "type": { "kind": "SCALAR", @@ -21906,7 +22781,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_TagOrdering", "ofType": null } }, @@ -21933,11 +22808,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -21948,7 +22823,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Tag", "ofType": null } }, @@ -21956,8 +22831,8 @@ "deprecationReason": null }, { - "name": "builds", - "description": "PullRequest builds Build", + "name": "resolves", + "description": "Commit resolves Issue", "args": [ { "name": "id", @@ -21970,7 +22845,17 @@ "defaultValue": null }, { - "name": "buildId", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -21980,17 +22865,17 @@ "defaultValue": null }, { - "name": "number", + "name": "title", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -22000,17 +22885,17 @@ "defaultValue": null }, { - "name": "status", + "name": "state", "description": "", "type": { "kind": "ENUM", - "name": "BuildStatus", + "name": "IssueState", "ofType": null }, "defaultValue": null }, { - "name": "buildUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -22020,7 +22905,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "action", "description": "", "type": { "kind": "SCALAR", @@ -22030,17 +22915,17 @@ "defaultValue": null }, { - "name": "trigger", + "name": "createdAt", "description": "", "type": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -22050,27 +22935,41 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_IssueOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "finishedAt", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -22078,19 +22977,46 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Issue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "statuses", + "description": "Commit statuses Status", + "args": [ { - "name": "timestamp", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "workflowId", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "StatusState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -22100,7 +23026,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "targetUrl", "description": "", "type": { "kind": "SCALAR", @@ -22110,7 +23036,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "context", "description": "", "type": { "kind": "SCALAR", @@ -22127,7 +23053,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_StatusOrdering", "ofType": null } }, @@ -22154,7 +23080,7 @@ "defaultValue": null }, { - "name": "data", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -22169,222 +23095,53 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Build", + "name": "Status", "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": "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 - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Commit", - "description": "Commit-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 Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha", - "description": "sha of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": "message of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Commit", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "email", - "description": "Commit email Email", + "name": "pushes", + "description": "Commit pushes Push", "args": [ { - "name": "address", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Email", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Commit builds Build", - "args": [ + }, { - "name": "id", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "buildId", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PushOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "number", + "name": "first", "description": "", "type": { "kind": "SCALAR", @@ -22394,57 +23151,74 @@ "defaultValue": null }, { - "name": "name", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "status", + "name": "branch", "description": "", "type": { - "kind": "ENUM", - "name": "BuildStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Push", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pullRequests", + "description": "Commit pullRequests PullRequest", + "args": [ { - "name": "buildUrl", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "compareUrl", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "trigger", + "name": "prId", "description": "", "type": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -22454,17 +23228,17 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "body", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -22474,11 +23248,11 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null @@ -22494,7 +23268,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -22504,7 +23278,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -22514,7 +23288,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -22524,261 +23298,7 @@ "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 - }, - { - "name": "pipelines", - "description": "Pipelines associated with this commit if applicable", - "args": [ - { - "name": "pipelineId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pipeline", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Commit repo Repo", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repoId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gitHubId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "defaultBranch", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "author", - "description": "Commit author SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "committer", - "description": "Commit committer SCMId", - "args": [ - { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "avatar", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -22786,32 +23306,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": "Commit tags Tag", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { - "name": "name", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -22821,7 +23318,7 @@ "defaultValue": null }, { - "name": "description", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -22831,7 +23328,7 @@ "defaultValue": null }, { - "name": "ref", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -22848,7 +23345,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -22875,11 +23372,11 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -22890,7 +23387,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "PullRequest", "ofType": null } }, @@ -22898,41 +23395,11 @@ "deprecationReason": null }, { - "name": "resolves", - "description": "Commit resolves Issue", + "name": "herokuApps", + "description": "Commit herokuApps HerokuApp", "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", + "name": "app", "description": "", "type": { "kind": "SCALAR", @@ -22942,7 +23409,7 @@ "defaultValue": null }, { - "name": "body", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -22951,16 +23418,6 @@ }, "defaultValue": null }, - { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "IssueState", - "ofType": null - }, - "defaultValue": null - }, { "name": "timestamp", "description": "", @@ -22972,17 +23429,7 @@ "defaultValue": null }, { - "name": "action", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", + "name": "user", "description": "", "type": { "kind": "SCALAR", @@ -22992,7 +23439,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "appId", "description": "", "type": { "kind": "SCALAR", @@ -23009,7 +23456,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_HerokuAppOrdering", "ofType": null } }, @@ -23036,7 +23483,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "release", "description": "", "type": { "kind": "SCALAR", @@ -23051,7 +23498,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "HerokuApp", "ofType": null } }, @@ -23059,8 +23506,8 @@ "deprecationReason": null }, { - "name": "statuses", - "description": "Commit statuses Status", + "name": "apps", + "description": "Commit apps Application", "args": [ { "name": "id", @@ -23076,14 +23523,14 @@ "name": "state", "description": "", "type": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -23093,7 +23540,7 @@ "defaultValue": null }, { - "name": "targetUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -23103,7 +23550,7 @@ "defaultValue": null }, { - "name": "context", + "name": "domain", "description": "", "type": { "kind": "SCALAR", @@ -23120,7 +23567,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_StatusOrdering", + "name": "_ApplicationOrdering", "ofType": null } }, @@ -23147,7 +23594,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -23162,7 +23609,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Status", + "name": "Application", "ofType": null } }, @@ -23170,21 +23617,21 @@ "deprecationReason": null }, { - "name": "pushes", - "description": "Commit pushes Push", + "name": "fingerprints", + "description": "Commit fingerprints Fingerprint", "args": [ { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -23201,7 +23648,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PushOrdering", + "name": "_FingerprintOrdering", "ofType": null } }, @@ -23228,7 +23675,7 @@ "defaultValue": null }, { - "name": "branch", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -23243,7 +23690,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Push", + "name": "Fingerprint", "ofType": null } }, @@ -23251,41 +23698,11 @@ "deprecationReason": null }, { - "name": "pullRequests", - "description": "Commit pullRequests PullRequest", + "name": "image", + "description": "Commit image DockerImage", "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", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -23295,7 +23712,7 @@ "defaultValue": null }, { - "name": "body", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -23305,7 +23722,7 @@ "defaultValue": null }, { - "name": "state", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -23313,19 +23730,22 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "merged", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "images", + "description": "Commit images DockerImage", + "args": [ { - "name": "timestamp", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -23335,7 +23755,7 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -23345,37 +23765,41 @@ "defaultValue": null }, { - "name": "branchName", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_DockerImageOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "title", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -23383,9 +23807,26 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "analysis", + "description": "", + "args": [ { - "name": "closedAt", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -23395,273 +23836,7 @@ "defaultValue": null }, { - "name": "mergedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PullRequestOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "herokuApps", - "description": "Commit herokuApps HerokuApp", - "args": [ - { - "name": "app", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "appId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_HerokuAppOrdering", - "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": "release", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "HerokuApp", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apps", - "description": "Commit apps Application", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "host", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "domain", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", + "name": "type", "description": "", "type": { "kind": "SCALAR", @@ -23672,233 +23847,20 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Application", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fingerprints", - "description": "Commit fingerprints Fingerprint", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "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", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Fingerprint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "image", - "description": "Commit 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": "images", - "description": "Commit images DockerImage", - "args": [ - { - "name": "image", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "LIST", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", + "kind": "INTERFACE", + "name": "SourceFingerprint", "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": "sentryAlerts", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SentryAlert", - "ofType": null + } } }, "isDeprecated": false, @@ -23920,37 +23882,49 @@ "enumValues": [ { "name": "passed", - "description": "Value for passed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { "name": "broken", - "description": "Value for broken", + "description": "", "isDeprecated": false, "deprecationReason": null }, { "name": "failed", - "description": "Value for failed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { "name": "started", - "description": "Value for started", + "description": "", "isDeprecated": false, "deprecationReason": null }, { "name": "canceled", - "description": "Value for canceled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { "name": "pending", - "description": "Value for pending", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queued", + "description": "", "isDeprecated": false, "deprecationReason": null } @@ -25508,7 +25482,316 @@ { "name": "goals", "description": null, - "args": [], + "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": "retryFeasible", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -25524,7 +25807,92 @@ { "name": "goalSets", "description": null, - "args": [], + "args": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -25540,7 +25908,78 @@ { "name": "goalsDisplayState", "description": null, - "args": [], + "args": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -25552,70 +25991,126 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_CommitOrdering", - "description": "Ordering Enum for Commit", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_asc", - "description": "Ascending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_desc", - "description": "Descending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message_asc", - "description": "Ascending sort for message", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "message_desc", - "description": "Descending sort for message", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "compliance", + "description": null, + "args": [ + { + "name": "_branch", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_repo", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyCompliance", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { @@ -26076,6 +26571,89 @@ ], "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", @@ -26141,6 +26719,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "descriptions", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SdmGoalDescriptions", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "environment", "description": null, @@ -26282,6 +26872,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "phase", "description": null, @@ -26337,7 +26939,22 @@ { "name": "provenance", "description": null, - "args": [], + "args": [ + { + "name": "registration", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { "kind": "LIST", "name": null, @@ -26628,11 +27245,11 @@ }, { "kind": "OBJECT", - "name": "SdmExternalUrl", + "name": "SdmGoalDescriptions", "description": null, "fields": [ { - "name": "label", + "name": "canceled", "description": null, "args": [], "type": { @@ -26644,7 +27261,103 @@ "deprecationReason": null }, { - "name": "url", + "name": "completed", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "failed", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inProcess", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": { @@ -26663,11 +27376,11 @@ }, { "kind": "OBJECT", - "name": "SdmGoalFulfillment", + "name": "SdmExternalUrl", "description": null, "fields": [ { - "name": "method", + "name": "label", "description": null, "args": [], "type": { @@ -26679,7 +27392,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "url", "description": null, "args": [], "type": { @@ -26698,11 +27411,11 @@ }, { "kind": "OBJECT", - "name": "SdmCondition", + "name": "SdmGoalFulfillment", "description": null, "fields": [ { - "name": "environment", + "name": "method", "description": null, "args": [], "type": { @@ -26726,7 +27439,7 @@ "deprecationReason": null }, { - "name": "uniqueName", + "name": "registration", "description": null, "args": [], "type": { @@ -26745,11 +27458,11 @@ }, { "kind": "OBJECT", - "name": "SdmRepository", + "name": "SdmCondition", "description": null, "fields": [ { - "name": "name", + "name": "environment", "description": null, "args": [], "type": { @@ -26761,7 +27474,7 @@ "deprecationReason": null }, { - "name": "owner", + "name": "name", "description": null, "args": [], "type": { @@ -26773,7 +27486,7 @@ "deprecationReason": null }, { - "name": "providerId", + "name": "uniqueName", "description": null, "args": [], "type": { @@ -26791,86 +27504,50 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "OBJECT", + "name": "SdmRepository", "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 - }, + "fields": [ { - "name": "in_process", + "name": "name", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "skipped", + "name": "owner", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "canceled", + "name": "providerId", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { @@ -27048,6 +27725,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "tags", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalSetTag", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "ts", "description": null, @@ -27113,6 +27806,87 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "OBJECT", + "name": "SdmGoalSetTag", + "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": "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", @@ -27130,6 +27904,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "format", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "push", "description": null, @@ -27210,20 +27996,26 @@ }, { "kind": "ENUM", - "name": "SdmGoalDisplayState", + "name": "PolicyCompliaceState", "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "show_current", + "name": "created", "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "show_all", + "name": "in_review", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewed", "description": null, "isDeprecated": false, "deprecationReason": null @@ -27233,24 +28025,24 @@ }, { "kind": "OBJECT", - "name": "Tag", - "description": "Tag-Node", + "name": "PolicyCompliance", + "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": "url", - "description": "the URL of the Tag", + "name": "_owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -27261,20 +28053,20 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Tag", + "name": "_repo", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of Tag", + "name": "_sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -27285,32 +28077,40 @@ "deprecationReason": null }, { - "name": "description", - "description": "description of Tag", + "name": "aspects", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceAspect", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ref", - "description": "ref of Tag", + "name": "differences", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyComplianceFingerprint", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Tag", + "name": "owner", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -27321,166 +28121,39 @@ "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 - } - ], + "name": "push", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "Release", + "name": "Push", "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": "state", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Commit", + "kind": "ENUM", + "name": "PolicyCompliaceState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "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 - } - ], + "name": "targets", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerImage", + "name": "PolicyComplianceFingerprint", "ofType": null } }, @@ -27488,222 +28161,25 @@ "deprecationReason": null }, { - "name": "builds", - "description": "Tag builds Build", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildId", - "description": "", - "type": { - "kind": "SCALAR", - "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": "ts", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Build", - "ofType": null - } + "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 @@ -27716,24 +28192,59 @@ }, { "kind": "OBJECT", - "name": "Release", - "description": "Release-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": "url", - "description": "the URL of the Release", + "name": "manageable", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "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", @@ -27744,12 +28255,36 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Release", + "name": "displayName", + "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "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, @@ -27757,7 +28292,7 @@ }, { "name": "name", - "description": "name of Release", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -27768,8 +28303,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Release", + "name": "sha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -27780,63 +28315,12 @@ "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": "type", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "Tag", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -27850,83 +28334,113 @@ }, { "kind": "ENUM", - "name": "_DockerImageOrdering", - "description": "Ordering Enum for DockerImage", + "name": "MergeStatus", + "description": "Enum for MergeStatus", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "can_be_merged", + "description": "Value for can_be_merged", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "unchecked", + "description": "Value for unchecked", "isDeprecated": false, "deprecationReason": null }, { - "name": "image_asc", - "description": "Ascending sort for image", + "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": "image_desc", - "description": "Descending sort for image", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_asc", - "description": "Ascending sort for imageName", + "name": "url", + "description": "the URL of the PullRequest", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName_desc", - "description": "Descending sort for imageName", + "name": "id", + "description": "id of PullRequest", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "number", + "description": "number of PullRequest", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "prId", + "description": "prId of PullRequest", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DockerImage", - "description": "DockerImage-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "name", + "description": "name of PullRequest", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": "image of DockerImage", + "name": "body", + "description": "body of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -27937,8 +28451,8 @@ "deprecationReason": null }, { - "name": "imageName", - "description": "imageName of DockerImage", + "name": "state", + "description": "state of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -27948,9 +28462,21 @@ "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 DockerImage", + "description": "timestamp of PullRequest", "args": [], "type": { "kind": "SCALAR", @@ -27961,21 +28487,129 @@ "deprecationReason": null }, { - "name": "pods", - "description": "DockerImage pods K8Pod", + "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", "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "phase", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -27985,7 +28619,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -27995,37 +28629,37 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "baseName", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "namespace", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "statusJSON", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -28035,7 +28669,7 @@ "defaultValue": null }, { - "name": "host", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -28045,7 +28679,30 @@ "defaultValue": null }, { - "name": "state", + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "head", + "description": "PullRequest head Commit", + "args": [ + { + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -28055,7 +28712,7 @@ "defaultValue": null }, { - "name": "specsJSON", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -28065,7 +28722,30 @@ "defaultValue": null }, { - "name": "envJSON", + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "base", + "description": "PullRequest base Commit", + "args": [ + { + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -28075,7 +28755,7 @@ "defaultValue": null }, { - "name": "metadataJSON", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -28085,11 +28765,173 @@ "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mergeCommit", + "description": "PullRequest mergeCommit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author", + "description": "PullRequest author SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "avatar", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assignees", + "description": "PullRequest assignees SCMId", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -28102,7 +28944,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8PodOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -28129,11 +28971,11 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -28144,7 +28986,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Pod", + "name": "SCMId", "ofType": null } }, @@ -28153,7 +28995,7 @@ }, { "name": "commits", - "description": "DockerImage commits Commit", + "description": "PullRequest commits Commit", "args": [ { "name": "sha", @@ -28233,9 +29075,19 @@ "deprecationReason": null }, { - "name": "containers", - "description": "DockerImage containers K8Container", + "name": "branch", + "description": "PullRequest branch Branch", "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "", @@ -28247,7 +29099,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -28257,7 +29109,17 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "isRemote", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "remoteRepoHtmlUrl", "description": "", "type": { "kind": "SCALAR", @@ -28265,9 +29127,32 @@ "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": "environment", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -28277,7 +29162,7 @@ "defaultValue": null }, { - "name": "containerJSON", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -28287,7 +29172,50 @@ "defaultValue": null }, { - "name": "state", + "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", @@ -28297,7 +29225,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -28307,7 +29235,7 @@ "defaultValue": null }, { - "name": "ready", + "name": "isRemote", "description": "", "type": { "kind": "SCALAR", @@ -28317,17 +29245,40 @@ "defaultValue": null }, { - "name": "restartCount", + "name": "remoteRepoHtmlUrl", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "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": "statusJSON", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -28337,11 +29288,11 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "default", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -28354,7 +29305,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8ContainerOrdering", + "name": "_LabelOrdering", "ofType": null } }, @@ -28381,7 +29332,7 @@ "defaultValue": null }, { - "name": "containerID", + "name": "color", "description": "", "type": { "kind": "SCALAR", @@ -28396,401 +29347,140 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Container", + "name": "Label", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_K8PodOrdering", - "description": "Ordering Enum for K8Pod", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_asc", - "description": "Ascending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase_desc", - "description": "Descending sort for phase", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_asc", - "description": "Ascending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment_desc", - "description": "Descending sort for environment", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_asc", - "description": "Ascending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName_desc", - "description": "Descending sort for baseName", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_asc", - "description": "Ascending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace_desc", - "description": "Descending sort for namespace", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_asc", - "description": "Ascending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_desc", - "description": "Descending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "specsJSON_asc", - "description": "Ascending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON_desc", - "description": "Descending sort for specsJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_asc", - "description": "Ascending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON_desc", - "description": "Descending sort for envJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON_asc", - "description": "Ascending sort for metadataJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON_desc", - "description": "Descending sort for metadataJSON", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff_asc", - "description": "Ascending sort for containersCrashLoopBackOff", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff_desc", - "description": "Descending sort for containersCrashLoopBackOff", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "K8Pod", - "description": "K8Pod-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "phase", - "description": "phase of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": "environment of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "baseName", - "description": "baseName of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace", - "description": "namespace of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statusJSON", - "description": "statusJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host", - "description": "host of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": "state of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specsJSON", - "description": "specsJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envJSON", - "description": "envJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metadataJSON", - "description": "metadataJSON of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "containersCrashLoopBackOff", - "description": "containersCrashLoopBackOff of K8Pod", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourceVersion", - "description": "resourceVersion of K8Pod", - "args": [], + "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": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "images", - "description": "K8Pod images DockerImage", + "name": "reviewers", + "description": "PullRequest reviewers SCMId", "args": [ { - "name": "image", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -28800,7 +29490,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -28817,7 +29507,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_DockerImageOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -28844,7 +29534,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -28859,7 +29549,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerImage", + "name": "SCMId", "ofType": null } }, @@ -28867,9 +29557,19 @@ "deprecationReason": null }, { - "name": "containers", - "description": "K8Pod containers K8Container", + "name": "lastAssignedBy", + "description": "PullRequest lastAssignedBy SCMId", "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "", @@ -28881,7 +29581,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -28889,9 +29589,32 @@ "ofType": null }, "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SCMId", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": "PullRequest comments Comment", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "name": "timestamp", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -28901,7 +29624,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -28911,7 +29634,7 @@ "defaultValue": null }, { - "name": "containerJSON", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -28921,7 +29644,7 @@ "defaultValue": null }, { - "name": "state", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -28931,7 +29654,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "commentId", "description": "", "type": { "kind": "SCALAR", @@ -28941,27 +29664,27 @@ "defaultValue": null }, { - "name": "ready", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "restartCount", + "name": "path", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "statusJSON", + "name": "position", "description": "", "type": { "kind": "SCALAR", @@ -28971,11 +29694,11 @@ "defaultValue": null }, { - "name": "resourceVersion", + "name": "htmlUrl", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -28988,7 +29711,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8ContainerOrdering", + "name": "_CommentOrdering", "ofType": null } }, @@ -29015,11 +29738,11 @@ "defaultValue": null }, { - "name": "containerID", + "name": "commentType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommentCommentType", "ofType": null }, "defaultValue": null @@ -29030,278 +29753,414 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Container", + "name": "Comment", "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", + "name": "builds", + "description": "PullRequest builds Build", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "compareUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trigger", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildTrigger", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pullRequestNumber", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "startedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "finishedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "workflowId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_BuildOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "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": "containerJSON_asc", - "description": "Ascending sort for containerJSON", + "name": "assigned", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "containerJSON_desc", - "description": "Descending sort for containerJSON", + "name": "created", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "unassigned", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "review_requested", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "stateReason_asc", - "description": "Ascending sort for stateReason", + "name": "review_request_removed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "stateReason_desc", - "description": "Descending sort for stateReason", + "name": "labeled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "ready_asc", - "description": "Ascending sort for ready", + "name": "unlabeled", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "ready_desc", - "description": "Descending sort for ready", + "name": "opened", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "restartCount_asc", - "description": "Ascending sort for restartCount", + "name": "edited", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "restartCount_desc", - "description": "Descending sort for restartCount", + "name": "closed", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON_asc", - "description": "Ascending sort for statusJSON", + "name": "reopened", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON_desc", - "description": "Descending sort for statusJSON", + "name": "synchronize", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_asc", - "description": "Ascending sort for resourceVersion", + "name": "submitted", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "resourceVersion_desc", - "description": "Descending sort for resourceVersion", + "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": "containerID_asc", - "description": "Ascending sort for containerID", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "containerID_desc", - "description": "Descending sort for containerID", + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "K8Container", - "description": "K8Container-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "imageName", - "description": "imageName of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": "environment of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "avatar_asc", + "description": "Ascending sort for avatar", "isDeprecated": false, "deprecationReason": null }, { - "name": "containerJSON", - "description": "containerJSON of K8Container", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "avatar_desc", + "description": "Descending sort for avatar", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Branch", + "description": "Branch-Node", + "fields": [ { - "name": "state", - "description": "state of K8Container", + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "stateReason", - "description": "stateReason of K8Container", + "name": "url", + "description": "the URL of the Branch", "args": [], "type": { "kind": "SCALAR", @@ -29312,32 +30171,32 @@ "deprecationReason": null }, { - "name": "ready", - "description": "ready of K8Container", + "name": "id", + "description": "id of Branch", "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "restartCount", - "description": "restartCount of K8Container", + "name": "name", + "description": "name of Branch", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "statusJSON", - "description": "statusJSON of K8Container", + "name": "timestamp", + "description": "timestamp of Branch", "args": [], "type": { "kind": "SCALAR", @@ -29348,20 +30207,20 @@ "deprecationReason": null }, { - "name": "resourceVersion", - "description": "resourceVersion of K8Container", + "name": "isRemote", + "description": "isRemote of Branch", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "containerID", - "description": "containerID of K8Container", + "name": "remoteRepoHtmlUrl", + "description": "remoteRepoHtmlUrl of Branch", "args": [], "type": { "kind": "SCALAR", @@ -29372,21 +30231,21 @@ "deprecationReason": null }, { - "name": "image", - "description": "K8Container image DockerImage", + "name": "repo", + "description": "Branch repo Repo", "args": [ { - "name": "image", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "imageName", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -29396,7 +30255,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -29404,52 +30263,39 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DockerImage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pod", - "description": "K8Container pod K8Pod", - "args": [ + }, { - "name": "name", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "phase", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "environment", + "name": "allowMergeCommit", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -29459,7 +30305,7 @@ "defaultValue": null }, { - "name": "baseName", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -29469,7 +30315,7 @@ "defaultValue": null }, { - "name": "namespace", + "name": "defaultBranch", "description": "", "type": { "kind": "SCALAR", @@ -29477,9 +30323,22 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "Branch commit Commit", + "args": [ { - "name": "statusJSON", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -29489,7 +30348,7 @@ "defaultValue": null }, { - "name": "host", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -29499,7 +30358,7 @@ "defaultValue": null }, { - "name": "state", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -29507,165 +30366,42 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pullRequests", + "description": "Branch pullRequests PullRequest", + "args": [ { - "name": "specsJSON", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "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": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "workflowId", - "description": "workflowId of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": "provider of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "config", - "description": "config of Workflow", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "builds", - "description": "Workflow builds Build", - "args": [ - { - "name": "id", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "buildId", + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -29674,16 +30410,6 @@ }, "defaultValue": null }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, { "name": "name", "description": "", @@ -29695,17 +30421,7 @@ "defaultValue": null }, { - "name": "status", - "description": "", - "type": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "buildUrl", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -29715,7 +30431,7 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -29725,17 +30441,17 @@ "defaultValue": null }, { - "name": "trigger", + "name": "merged", "description": "", "type": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -29745,17 +30461,17 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", @@ -29765,7 +30481,7 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -29775,7 +30491,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -29785,7 +30501,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -29795,7 +30511,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -29805,7 +30521,7 @@ "defaultValue": null }, { - "name": "jobId", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -29822,7 +30538,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -29849,11 +30565,11 @@ "defaultValue": null }, { - "name": "data", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null @@ -29864,7 +30580,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Build", + "name": "PullRequest", "ofType": null } }, @@ -29879,8 +30595,8 @@ }, { "kind": "ENUM", - "name": "_TagOrdering", - "description": "Ordering Enum for Tag", + "name": "_PullRequestOrdering", + "description": "Ordering Enum for PullRequest", "fields": null, "inputFields": null, "interfaces": null, @@ -29909,6 +30625,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "number_asc", + "description": "Ascending sort for number", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number_desc", + "description": "Descending sort for number", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prId_asc", + "description": "Ascending sort for prId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prId_desc", + "description": "Descending sort for prId", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "name_asc", "description": "Ascending sort for name", @@ -29922,26 +30662,38 @@ "deprecationReason": null }, { - "name": "description_asc", - "description": "Ascending sort for description", + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "description_desc", - "description": "Descending sort for description", + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "ref_asc", - "description": "Ascending sort for ref", + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "ref_desc", - "description": "Descending sort for ref", + "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 }, @@ -29956,18 +30708,120 @@ "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": "StatusState", - "description": "Enum for StatusState", + "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", @@ -29975,20 +30829,26 @@ "deprecationReason": null }, { - "name": "success", - "description": "Value for success", + "name": "approved", + "description": "Value for approved", "isDeprecated": false, "deprecationReason": null }, { - "name": "error", - "description": "Value for error", + "name": "commented", + "description": "Value for commented", "isDeprecated": false, "deprecationReason": null }, { - "name": "failure", - "description": "Value for failure", + "name": "unapproved", + "description": "Value for unapproved", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changes_requested", + "description": "Value for changes_requested", "isDeprecated": false, "deprecationReason": null } @@ -29997,8 +30857,8 @@ }, { "kind": "ENUM", - "name": "_StatusOrdering", - "description": "Ordering Enum for Status", + "name": "_ReviewOrdering", + "description": "Ordering Enum for Review", "fields": null, "inputFields": null, "interfaces": null, @@ -30028,62 +30888,74 @@ "deprecationReason": null }, { - "name": "state_asc", - "description": "Ascending sort for state", + "name": "gitHubId_asc", + "description": "Ascending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "gitHubId_desc", + "description": "Descending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "description_asc", - "description": "Ascending sort for description", + "name": "reviewId_asc", + "description": "Ascending sort for reviewId", "isDeprecated": false, "deprecationReason": null }, { - "name": "description_desc", - "description": "Descending sort for description", + "name": "reviewId_desc", + "description": "Descending sort for reviewId", "isDeprecated": false, "deprecationReason": null }, { - "name": "targetUrl_asc", - "description": "Ascending sort for targetUrl", + "name": "body_asc", + "description": "Ascending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "targetUrl_desc", - "description": "Descending sort for targetUrl", + "name": "body_desc", + "description": "Descending sort for body", "isDeprecated": false, "deprecationReason": null }, { - "name": "context_asc", - "description": "Ascending sort for context", + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "context_desc", - "description": "Descending sort for context", + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "submittedAt_asc", + "description": "Ascending sort for submittedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "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 } @@ -30092,8 +30964,8 @@ }, { "kind": "OBJECT", - "name": "Status", - "description": "Status-Node", + "name": "Review", + "description": "Review-Node", "fields": [ { "name": "_id", @@ -30107,9 +30979,21 @@ "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 Status", + "description": "id of Review", "args": [], "type": { "kind": "SCALAR", @@ -30120,20 +31004,20 @@ "deprecationReason": null }, { - "name": "state", - "description": "state of Status", + "name": "gitHubId", + "description": "gitHubId of Review", "args": [], "type": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": "description of Status", + "name": "reviewId", + "description": "reviewId of Review", "args": [], "type": { "kind": "SCALAR", @@ -30144,8 +31028,8 @@ "deprecationReason": null }, { - "name": "targetUrl", - "description": "targetUrl of Status", + "name": "body", + "description": "body of Review", "args": [], "type": { "kind": "SCALAR", @@ -30156,8 +31040,20 @@ "deprecationReason": null }, { - "name": "context", - "description": "context of Status", + "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", @@ -30168,8 +31064,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Status", + "name": "htmlUrl", + "description": "htmlUrl of Review", "args": [], "type": { "kind": "SCALAR", @@ -30180,11 +31076,11 @@ "deprecationReason": null }, { - "name": "commit", - "description": "Status commit Commit", + "name": "by", + "description": "Review by SCMId", "args": [ { - "name": "sha", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -30194,7 +31090,7 @@ "defaultValue": null }, { - "name": "message", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -30204,16 +31100,97 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "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": "SCMId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "Review commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { "kind": "OBJECT", "name": "Commit", @@ -30221,6 +31198,340 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "comments", + "description": "Review comments Comment", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "body", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "path", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "position", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "htmlUrl", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommentOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "commentType", + "description": "", + "type": { + "kind": "ENUM", + "name": "CommentCommentType", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Comment", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pullRequest", + "description": "Review 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, @@ -30230,8 +31541,8 @@ }, { "kind": "ENUM", - "name": "_PushOrdering", - "description": "Ordering Enum for Push", + "name": "_CommentOrdering", + "description": "Ordering Enum for Comment", "fields": null, "inputFields": null, "interfaces": null, @@ -30260,6 +31571,18 @@ "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", @@ -30273,109 +31596,98 @@ "deprecationReason": null }, { - "name": "branch_asc", - "description": "Ascending sort for branch", + "name": "createdAt_asc", + "description": "Ascending sort for createdAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "branch_desc", - "description": "Descending sort for branch", + "name": "createdAt_desc", + "description": "Descending sort for createdAt", "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", + "name": "updatedAt_asc", + "description": "Ascending sort for updatedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "updatedAt_desc", + "description": "Descending sort for updatedAt", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_asc", - "description": "Ascending sort for app", + "name": "commentId_asc", + "description": "Ascending sort for commentId", "isDeprecated": false, "deprecationReason": null }, { - "name": "app_desc", - "description": "Descending sort for app", + "name": "commentId_desc", + "description": "Descending sort for commentId", "isDeprecated": false, "deprecationReason": null }, { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "gitHubId_asc", + "description": "Ascending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "url_desc", - "description": "Descending sort for url", + "name": "gitHubId_desc", + "description": "Descending sort for gitHubId", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "path_asc", + "description": "Ascending sort for path", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "path_desc", + "description": "Descending sort for path", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_asc", - "description": "Ascending sort for user", + "name": "position_asc", + "description": "Ascending sort for position", "isDeprecated": false, "deprecationReason": null }, { - "name": "user_desc", - "description": "Descending sort for user", + "name": "position_desc", + "description": "Descending sort for position", "isDeprecated": false, "deprecationReason": null }, { - "name": "appId_asc", - "description": "Ascending sort for appId", + "name": "htmlUrl_asc", + "description": "Ascending sort for htmlUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "appId_desc", - "description": "Descending sort for appId", + "name": "htmlUrl_desc", + "description": "Descending sort for htmlUrl", "isDeprecated": false, "deprecationReason": null }, { - "name": "release_asc", - "description": "Ascending sort for release", + "name": "commentType_asc", + "description": "Ascending sort for commentType", "isDeprecated": false, "deprecationReason": null }, { - "name": "release_desc", - "description": "Descending sort for release", + "name": "commentType_desc", + "description": "Descending sort for commentType", "isDeprecated": false, "deprecationReason": null } @@ -30383,29 +31695,46 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "HerokuApp", - "description": "HerokuApp-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "kind": "ENUM", + "name": "CommentCommentType", + "description": "Enum for CommentCommentType", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "review", + "description": "Value for review", "isDeprecated": false, "deprecationReason": null }, { - "name": "app", - "description": "app of HerokuApp", + "name": "pullRequest", + "description": "Value for pullRequest", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "issue", + "description": "Value for issue", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Comment", + "description": "Comment-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -30413,7 +31742,7 @@ }, { "name": "url", - "description": "url of HerokuApp", + "description": "the url of the Comment", "args": [], "type": { "kind": "SCALAR", @@ -30424,20 +31753,20 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of HerokuApp", + "name": "id", + "description": "id of Comment", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "user", - "description": "user of HerokuApp", + "name": "body", + "description": "body of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30448,8 +31777,8 @@ "deprecationReason": null }, { - "name": "appId", - "description": "appId of HerokuApp", + "name": "timestamp", + "description": "timestamp of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30460,8 +31789,8 @@ "deprecationReason": null }, { - "name": "release", - "description": "release of HerokuApp", + "name": "createdAt", + "description": "createdAt of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30472,219 +31801,32 @@ "deprecationReason": null }, { - "name": "commits", - "description": "HerokuApp 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": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_ApplicationOrdering", - "description": "Ordering Enum for Application", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_asc", - "description": "Ascending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state_desc", - "description": "Descending sort for state", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_asc", - "description": "Ascending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "host_desc", - "description": "Descending sort for host", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_asc", - "description": "Ascending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "domain_desc", - "description": "Descending sort for domain", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Application", - "description": "Application-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", + "name": "updatedAt", + "description": "updatedAt of Comment", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of Application", + "name": "commentId", + "description": "commentId of Comment", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": "state of Application", + "name": "gitHubId", + "description": "gitHubId of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30695,8 +31837,8 @@ "deprecationReason": null }, { - "name": "host", - "description": "host of Application", + "name": "path", + "description": "path of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30707,8 +31849,8 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of Application", + "name": "position", + "description": "position of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30719,8 +31861,8 @@ "deprecationReason": null }, { - "name": "domain", - "description": "domain of Application", + "name": "htmlUrl", + "description": "htmlUrl of Comment", "args": [], "type": { "kind": "SCALAR", @@ -30731,23 +31873,43 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of Application", + "name": "commentType", + "description": "commentType of Comment", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "CommentCommentType", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commits", - "description": "Application commits Commit", + "name": "issue", + "description": "Comment issue Issue", "args": [ { - "name": "sha", + "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", @@ -30757,7 +31919,7 @@ "defaultValue": null }, { - "name": "message", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -30767,41 +31929,67 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "body", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "IssueState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "action", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "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", @@ -30812,141 +32000,29 @@ } ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "description": "Ordering Enum for Fingerprint", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_asc", - "description": "Ascending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_desc", - "description": "Descending sort for name", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_asc", - "description": "Ascending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha_desc", - "description": "Descending sort for sha", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_asc", - "description": "Ascending sort for data", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_desc", - "description": "Descending sort for data", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Fingerprint", - "description": "Fingerprint-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sha", - "description": "sha of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data", - "description": "data of Fingerprint", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Issue", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "Fingerprint commit Commit", + "name": "review", + "description": "Comment review Review", "args": [ { - "name": "sha", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -30956,7 +32032,7 @@ "defaultValue": null }, { - "name": "message", + "name": "reviewId", "description": "", "type": { "kind": "SCALAR", @@ -30966,7 +32042,37 @@ "defaultValue": null }, { - "name": "timestamp", + "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", @@ -30978,161 +32084,212 @@ ], "type": { "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SentryAlert", - "description": null, - "fields": [ - { - "name": "commit", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "culprit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "name": "Review", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "event", - "description": null, - "args": [], + "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 + } + ], "type": { "kind": "OBJECT", - "name": "SentryEvent", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "level", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_name", - "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": "id", - "description": "The ID of this SentryAlert", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SentryEvent", - "description": null, - "fields": [ - { - "name": "event_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "name": "PullRequest", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "extra", - "description": null, + "name": "by", + "description": "Comment by SCMId", "args": [ { - "name": "git_sha", - "description": null, + "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", @@ -31143,7 +32300,7 @@ ], "type": { "kind": "OBJECT", - "name": "SentryEventExtra", + "name": "SCMId", "ofType": null }, "isDeprecated": false, @@ -31157,48 +32314,24 @@ }, { "kind": "OBJECT", - "name": "SentryEventExtra", - "description": null, + "name": "Tag", + "description": "Tag-Node", "fields": [ { - "name": "artifact", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "correlation_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "git_owner", - "description": null, + "name": "url", + "description": "the URL of the Tag", "args": [], "type": { "kind": "SCALAR", @@ -31209,20 +32342,20 @@ "deprecationReason": null }, { - "name": "git_repo", - "description": null, + "name": "id", + "description": "id of Tag", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "git_sha", - "description": null, + "name": "name", + "description": "name of Tag", "args": [], "type": { "kind": "SCALAR", @@ -31233,8 +32366,8 @@ "deprecationReason": null }, { - "name": "invocation_id", - "description": null, + "name": "description", + "description": "description of Tag", "args": [], "type": { "kind": "SCALAR", @@ -31245,8 +32378,8 @@ "deprecationReason": null }, { - "name": "operation_name", - "description": null, + "name": "ref", + "description": "ref of Tag", "args": [], "type": { "kind": "SCALAR", @@ -31257,8 +32390,8 @@ "deprecationReason": null }, { - "name": "operation_type", - "description": null, + "name": "timestamp", + "description": "timestamp of Tag", "args": [], "type": { "kind": "SCALAR", @@ -31269,211 +32402,97 @@ "deprecationReason": null }, { - "name": "team_id", - "description": null, - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Release", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "team_name", - "description": null, - "args": [], + "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 + } + ], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "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": "OBJECT", - "name": "Branch", - "description": "Branch-Node", - "fields": [ - { - "name": "_id", - "description": "internal node id", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "the URL of the Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "id of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "name of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "timestamp of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRemote", - "description": "isRemote of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "remoteRepoHtmlUrl", - "description": "remoteRepoHtmlUrl of Branch", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": "Branch repo Repo", + "name": "containers", + "description": "Tag containers DockerImage", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -31483,7 +32502,7 @@ "defaultValue": null }, { - "name": "name", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -31493,57 +32512,41 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowSquashMerge", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "allowMergeCommit", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_DockerImageOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "repoId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "defaultBranch", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -31554,39 +32557,33 @@ } ], "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commit", - "description": "Branch commit Commit", + "name": "builds", + "description": "Tag builds Build", "args": [ { - "name": "sha", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "buildId", "description": "", "type": { "kind": "SCALAR", @@ -31594,42 +32591,19 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Commit", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequests", - "description": "Branch pullRequests PullRequest", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null }, { "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "prId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -31639,17 +32613,17 @@ "defaultValue": null }, { - "name": "name", + "name": "status", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "BuildStatus", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -31659,7 +32633,7 @@ "defaultValue": null }, { - "name": "state", + "name": "compareUrl", "description": "", "type": { "kind": "SCALAR", @@ -31669,17 +32643,17 @@ "defaultValue": null }, { - "name": "merged", + "name": "trigger", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "BuildTrigger", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -31689,17 +32663,17 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "pullRequestNumber", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "branchName", + "name": "startedAt", "description": "", "type": { "kind": "SCALAR", @@ -31709,7 +32683,7 @@ "defaultValue": null }, { - "name": "title", + "name": "finishedAt", "description": "", "type": { "kind": "SCALAR", @@ -31719,7 +32693,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -31729,7 +32703,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -31739,7 +32713,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "jobName", "description": "", "type": { "kind": "SCALAR", @@ -31749,7 +32723,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "jobId", "description": "", "type": { "kind": "SCALAR", @@ -31766,7 +32740,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_BuildOrdering", "ofType": null } }, @@ -31793,11 +32767,11 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "data", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -31808,7 +32782,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "Build", "ofType": null } }, @@ -31822,56 +32796,143 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "ReviewState", - "description": "Enum for ReviewState", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "Release", + "description": "Release-Node", + "fields": [ { - "name": "requested", - "description": "Value for requested", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pending", - "description": "Value for pending", + "name": "url", + "description": "the URL of the Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "approved", - "description": "Value for approved", + "name": "id", + "description": "id of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "commented", - "description": "Value for commented", + "name": "name", + "description": "name of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unapproved", - "description": "Value for unapproved", + "name": "timestamp", + "description": "timestamp of Release", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "changes_requested", - "description": "Value for changes_requested", + "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": "_ReviewOrdering", - "description": "Ordering Enum for Review", + "name": "_DockerImageOrdering", + "description": "Ordering Enum for DockerImage", "fields": null, "inputFields": null, "interfaces": null, @@ -31889,86 +32950,38 @@ "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", + "name": "image_asc", + "description": "Ascending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "state_desc", - "description": "Descending sort for state", + "name": "image_desc", + "description": "Descending sort for image", "isDeprecated": false, "deprecationReason": null }, { - "name": "submittedAt_asc", - "description": "Ascending sort for submittedAt", + "name": "imageName_asc", + "description": "Ascending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "submittedAt_desc", - "description": "Descending sort for submittedAt", + "name": "imageName_desc", + "description": "Descending sort for imageName", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } @@ -31977,8 +32990,8 @@ }, { "kind": "OBJECT", - "name": "Review", - "description": "Review-Node", + "name": "DockerImage", + "description": "DockerImage-Node", "fields": [ { "name": "_id", @@ -31993,8 +33006,8 @@ "deprecationReason": null }, { - "name": "url", - "description": "the URL of the Review", + "name": "image", + "description": "image of DockerImage", "args": [], "type": { "kind": "SCALAR", @@ -32005,68 +33018,8 @@ "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", + "name": "imageName", + "description": "imageName of DockerImage", "args": [], "type": { "kind": "SCALAR", @@ -32077,8 +33030,8 @@ "deprecationReason": null }, { - "name": "htmlUrl", - "description": "htmlUrl of Review", + "name": "timestamp", + "description": "timestamp of DockerImage", "args": [], "type": { "kind": "SCALAR", @@ -32089,11 +33042,11 @@ "deprecationReason": null }, { - "name": "by", - "description": "Review by SCMId", + "name": "pods", + "description": "DockerImage pods K8Pod", "args": [ { - "name": "login", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -32103,7 +33056,7 @@ "defaultValue": null }, { - "name": "name", + "name": "phase", "description": "", "type": { "kind": "SCALAR", @@ -32113,41 +33066,37 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "environment", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMIdOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "avatar", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", @@ -32155,26 +33104,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "Review commit Commit", - "args": [ + }, { - "name": "sha", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -32184,7 +33116,7 @@ "defaultValue": null }, { - "name": "message", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -32194,7 +33126,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -32202,32 +33134,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": "specsJSON", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "envJSON", "description": "", "type": { "kind": "SCALAR", @@ -32237,7 +33156,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "metadataJSON", "description": "", "type": { "kind": "SCALAR", @@ -32247,57 +33166,78 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "containersCrashLoopBackOff", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8PodOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "commentId", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "gitHubId", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "path", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Pod", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commits", + "description": "DockerImage commits Commit", + "args": [ { - "name": "position", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -32307,7 +33247,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -32324,7 +33264,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_CommitOrdering", "ofType": null } }, @@ -32351,11 +33291,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -32366,7 +33306,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Commit", "ofType": null } }, @@ -32374,31 +33314,31 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "Review pullRequest PullRequest", + "name": "containers", + "description": "DockerImage containers K8Container", "args": [ { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "prId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -32408,7 +33348,7 @@ "defaultValue": null }, { - "name": "name", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -32418,7 +33358,7 @@ "defaultValue": null }, { - "name": "body", + "name": "containerJSON", "description": "", "type": { "kind": "SCALAR", @@ -32438,37 +33378,37 @@ "defaultValue": null }, { - "name": "merged", + "name": "stateReason", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "ready", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "baseBranchName", + "name": "restartCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "branchName", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -32478,47 +33418,51 @@ "defaultValue": null }, { - "name": "title", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8ContainerOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "updatedAt", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mergedAt", + "name": "containerID", "description": "", "type": { "kind": "SCALAR", @@ -32526,22 +33470,16 @@ "ofType": null }, "defaultValue": null - }, - { - "name": "mergeStatus", - "description": "", - "type": { - "kind": "ENUM", - "name": "MergeStatus", - "ofType": null - }, - "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "PullRequest", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Container", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -32554,8 +33492,8 @@ }, { "kind": "ENUM", - "name": "_CommentOrdering", - "description": "Ordering Enum for Comment", + "name": "_K8PodOrdering", + "description": "Ordering Enum for K8Pod", "fields": null, "inputFields": null, "interfaces": null, @@ -32573,26 +33511,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": "body_asc", - "description": "Ascending sort for body", + "name": "phase_asc", + "description": "Ascending sort for phase", "isDeprecated": false, "deprecationReason": null }, { - "name": "body_desc", - "description": "Descending sort for body", + "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 }, @@ -32609,127 +33559,122 @@ "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "baseName_asc", + "description": "Ascending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_desc", - "description": "Descending sort for createdAt", + "name": "baseName_desc", + "description": "Descending sort for baseName", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_asc", - "description": "Ascending sort for updatedAt", + "name": "namespace_asc", + "description": "Ascending sort for namespace", "isDeprecated": false, "deprecationReason": null }, { - "name": "updatedAt_desc", - "description": "Descending sort for updatedAt", + "name": "namespace_desc", + "description": "Descending sort for namespace", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentId_asc", - "description": "Ascending sort for commentId", + "name": "statusJSON_asc", + "description": "Ascending sort for statusJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentId_desc", - "description": "Descending sort for commentId", + "name": "statusJSON_desc", + "description": "Descending sort for statusJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_asc", - "description": "Ascending sort for gitHubId", + "name": "host_asc", + "description": "Ascending sort for host", "isDeprecated": false, "deprecationReason": null }, { - "name": "gitHubId_desc", - "description": "Descending sort for gitHubId", + "name": "host_desc", + "description": "Descending sort for host", "isDeprecated": false, "deprecationReason": null }, { - "name": "path_asc", - "description": "Ascending sort for path", + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "path_desc", - "description": "Descending sort for path", + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "position_asc", - "description": "Ascending sort for position", + "name": "specsJSON_asc", + "description": "Ascending sort for specsJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "position_desc", - "description": "Descending sort for position", + "name": "specsJSON_desc", + "description": "Descending sort for specsJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_asc", - "description": "Ascending sort for htmlUrl", + "name": "envJSON_asc", + "description": "Ascending sort for envJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "htmlUrl_desc", - "description": "Descending sort for htmlUrl", + "name": "envJSON_desc", + "description": "Descending sort for envJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentType_asc", - "description": "Ascending sort for commentType", + "name": "metadataJSON_asc", + "description": "Ascending sort for metadataJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "commentType_desc", - "description": "Descending sort for commentType", + "name": "metadataJSON_desc", + "description": "Descending sort for metadataJSON", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CommentCommentType", - "description": "Enum for CommentCommentType", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "review", - "description": "Value for review", + "name": "containersCrashLoopBackOff_asc", + "description": "Ascending sort for containersCrashLoopBackOff", "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequest", - "description": "Value for pullRequest", + "name": "containersCrashLoopBackOff_desc", + "description": "Descending sort for containersCrashLoopBackOff", "isDeprecated": false, "deprecationReason": null }, { - "name": "issue", - "description": "Value for issue", + "name": "resourceVersion_asc", + "description": "Ascending sort for resourceVersion", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceVersion_desc", + "description": "Descending sort for resourceVersion", "isDeprecated": false, "deprecationReason": null } @@ -32738,8 +33683,8 @@ }, { "kind": "OBJECT", - "name": "Comment", - "description": "Comment-Node", + "name": "K8Pod", + "description": "K8Pod-Node", "fields": [ { "name": "_id", @@ -32754,8 +33699,8 @@ "deprecationReason": null }, { - "name": "url", - "description": "the url of the Comment", + "name": "name", + "description": "name of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32766,20 +33711,20 @@ "deprecationReason": null }, { - "name": "id", - "description": "id of Comment", + "name": "phase", + "description": "phase of K8Pod", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "body", - "description": "body of Comment", + "name": "environment", + "description": "environment of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32791,7 +33736,7 @@ }, { "name": "timestamp", - "description": "timestamp of Comment", + "description": "timestamp of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32802,8 +33747,8 @@ "deprecationReason": null }, { - "name": "createdAt", - "description": "createdAt of Comment", + "name": "baseName", + "description": "baseName of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32814,8 +33759,8 @@ "deprecationReason": null }, { - "name": "updatedAt", - "description": "updatedAt of Comment", + "name": "namespace", + "description": "namespace of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32826,8 +33771,8 @@ "deprecationReason": null }, { - "name": "commentId", - "description": "commentId of Comment", + "name": "statusJSON", + "description": "statusJSON of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32838,8 +33783,8 @@ "deprecationReason": null }, { - "name": "gitHubId", - "description": "gitHubId of Comment", + "name": "host", + "description": "host of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32850,8 +33795,8 @@ "deprecationReason": null }, { - "name": "path", - "description": "path of Comment", + "name": "state", + "description": "state of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32862,8 +33807,8 @@ "deprecationReason": null }, { - "name": "position", - "description": "position of Comment", + "name": "specsJSON", + "description": "specsJSON of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32874,8 +33819,8 @@ "deprecationReason": null }, { - "name": "htmlUrl", - "description": "htmlUrl of Comment", + "name": "envJSON", + "description": "envJSON of K8Pod", "args": [], "type": { "kind": "SCALAR", @@ -32886,77 +33831,95 @@ "deprecationReason": null }, { - "name": "commentType", - "description": "commentType of Comment", + "name": "metadataJSON", + "description": "metadataJSON of K8Pod", "args": [], "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "issue", - "description": "Comment issue Issue", + "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": "id", + "name": "image", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "name", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_DockerImageOrdering", + "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 @@ -32970,92 +33933,26 @@ "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 } ], "type": { - "kind": "OBJECT", - "name": "Issue", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerImage", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "review", - "description": "Comment review Review", + "name": "containers", + "description": "K8Pod containers K8Container", "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", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -33065,17 +33962,7 @@ "defaultValue": null }, { - "name": "state", - "description": "", - "type": { - "kind": "ENUM", - "name": "ReviewState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submittedAt", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -33085,7 +33972,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -33093,42 +33980,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Review", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pullRequest", - "description": "Comment pullRequest PullRequest", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null }, { - "name": "prId", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -33138,7 +33992,7 @@ "defaultValue": null }, { - "name": "name", + "name": "containerJSON", "description": "", "type": { "kind": "SCALAR", @@ -33148,7 +34002,7 @@ "defaultValue": null }, { - "name": "body", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -33158,7 +34012,7 @@ "defaultValue": null }, { - "name": "state", + "name": "stateReason", "description": "", "type": { "kind": "SCALAR", @@ -33168,7 +34022,7 @@ "defaultValue": null }, { - "name": "merged", + "name": "ready", "description": "", "type": { "kind": "SCALAR", @@ -33178,27 +34032,17 @@ "defaultValue": null }, { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "baseBranchName", + "name": "restartCount", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "branchName", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -33208,47 +34052,51 @@ "defaultValue": null }, { - "name": "title", + "name": "resourceVersion", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "createdAt", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_K8ContainerOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "updatedAt", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "closedAt", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "mergedAt", + "name": "containerID", "description": "", "type": { "kind": "SCALAR", @@ -33256,65 +34104,16 @@ "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 - }, - { - "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 + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "K8Container", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "SCMId", - "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -33327,8 +34126,8 @@ }, { "kind": "ENUM", - "name": "_BranchOrdering", - "description": "Ordering Enum for Branch", + "name": "_K8ContainerOrdering", + "description": "Ordering Enum for K8Container", "fields": null, "inputFields": null, "interfaces": null, @@ -33346,26 +34145,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 }, @@ -33382,109 +34181,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 - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_WorkflowOrdering", - "description": "Ordering Enum for Workflow", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "state_desc", + "description": "Descending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "stateReason_asc", + "description": "Ascending sort for stateReason", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "stateReason_desc", + "description": "Descending sort for stateReason", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "ready_asc", + "description": "Ascending sort for ready", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "ready_desc", + "description": "Descending sort for ready", "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_asc", - "description": "Ascending sort for workflowId", + "name": "restartCount_asc", + "description": "Ascending sort for restartCount", "isDeprecated": false, "deprecationReason": null }, { - "name": "workflowId_desc", - "description": "Descending sort for workflowId", + "name": "restartCount_desc", + "description": "Descending sort for restartCount", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_asc", - "description": "Ascending sort for provider", + "name": "statusJSON_asc", + "description": "Ascending sort for statusJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "provider_desc", - "description": "Descending sort for provider", + "name": "statusJSON_desc", + "description": "Descending sort for statusJSON", "isDeprecated": false, "deprecationReason": null }, { - "name": "config_asc", - "description": "Ascending sort for config", + "name": "resourceVersion_asc", + "description": "Ascending sort for resourceVersion", "isDeprecated": false, "deprecationReason": null }, { - "name": "config_desc", - "description": "Descending sort for config", + "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 } @@ -33492,96 +34292,133 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "_DeletedBranchOrdering", - "description": "Ordering Enum for DeletedBranch", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "K8Container", + "description": "K8Container-Node", + "fields": [ { - "name": "atmTeamId_asc", - "description": "Ascending sort for atmTeamId", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "name", + "description": "name of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "imageName", + "description": "imageName of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "timestamp", + "description": "timestamp of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "environment", + "description": "environment of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "containerJSON", + "description": "containerJSON of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "state", + "description": "state of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "stateReason", + "description": "stateReason of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeletedBranch", - "description": "DeletedBranch-Node", - "fields": [ + }, { - "name": "_id", - "description": "internal node id", + "name": "ready", + "description": "ready of K8Container", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of DeletedBranch", + "name": "restartCount", + "description": "restartCount of K8Container", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", - "description": "name of DeletedBranch", + "name": "statusJSON", + "description": "statusJSON of K8Container", "args": [], "type": { "kind": "SCALAR", @@ -33592,8 +34429,20 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of DeletedBranch", + "name": "resourceVersion", + "description": "resourceVersion of K8Container", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "containerID", + "description": "containerID of K8Container", "args": [], "type": { "kind": "SCALAR", @@ -33604,21 +34453,21 @@ "deprecationReason": null }, { - "name": "repo", - "description": "DeletedBranch repo Repo", + "name": "image", + "description": "K8Container image DockerImage", "args": [ { - "name": "id", + "name": "image", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "owner", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -33627,6 +34476,29 @@ }, "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": "pod", + "description": "K8Container pod K8Pod", + "args": [ { "name": "name", "description": "", @@ -33638,37 +34510,37 @@ "defaultValue": null }, { - "name": "allowRebaseMerge", + "name": "phase", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowSquashMerge", + "name": "environment", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "allowMergeCommit", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "repoId", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", @@ -33678,7 +34550,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", @@ -33688,7 +34560,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -33696,22 +34568,9 @@ "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Repo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "commit", - "description": "DeletedBranch commit Commit", - "args": [ + }, { - "name": "sha", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -33721,7 +34580,7 @@ "defaultValue": null }, { - "name": "message", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -33731,7 +34590,27 @@ "defaultValue": null }, { - "name": "timestamp", + "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", @@ -33739,19 +34618,122 @@ "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": "Commit", + "name": "K8Pod", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Workflow", + "description": "Workflow-Node", + "fields": [ + { + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "pullRequests", - "description": "DeletedBranch pullRequests PullRequest", + "name": "id", + "description": "id of Workflow", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "name of Workflow", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowId", + "description": "workflowId of Workflow", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": "provider of Workflow", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config", + "description": "config of Workflow", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "builds", + "description": "Workflow builds Build", "args": [ { "name": "id", @@ -33764,21 +34746,21 @@ "defaultValue": null }, { - "name": "number", + "name": "buildId", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "prId", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null @@ -33794,7 +34776,17 @@ "defaultValue": null }, { - "name": "body", + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -33804,7 +34796,7 @@ "defaultValue": null }, { - "name": "state", + "name": "compareUrl", "description": "", "type": { "kind": "SCALAR", @@ -33814,17 +34806,17 @@ "defaultValue": null }, { - "name": "merged", + "name": "trigger", "description": "", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "BuildTrigger", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -33834,17 +34826,17 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "pullRequestNumber", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "branchName", + "name": "startedAt", "description": "", "type": { "kind": "SCALAR", @@ -33854,7 +34846,7 @@ "defaultValue": null }, { - "name": "title", + "name": "finishedAt", "description": "", "type": { "kind": "SCALAR", @@ -33864,7 +34856,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -33874,7 +34866,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -33884,7 +34876,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "jobName", "description": "", "type": { "kind": "SCALAR", @@ -33894,7 +34886,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "jobId", "description": "", "type": { "kind": "SCALAR", @@ -33911,7 +34903,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_BuildOrdering", "ofType": null } }, @@ -33938,11 +34930,11 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "data", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -33953,7 +34945,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "Build", "ofType": null } }, @@ -33968,8 +34960,8 @@ }, { "kind": "ENUM", - "name": "_GitHubIdOrdering", - "description": "Ordering Enum for GitHubId", + "name": "_TagOrdering", + "description": "Ordering Enum for Tag", "fields": null, "inputFields": null, "interfaces": null, @@ -33987,14 +34979,14 @@ "deprecationReason": null }, { - "name": "login_asc", - "description": "Ascending sort for login", + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "login_desc", - "description": "Descending sort for login", + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, @@ -34009,14 +35001,85 @@ "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null + }, + { + "name": "description_asc", + "description": "Ascending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_desc", + "description": "Descending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ref_asc", + "description": "Ascending sort for ref", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ref_desc", + "description": "Descending sort for ref", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_desc", + "description": "Descending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null }, { "kind": "ENUM", - "name": "_ImageLinkedOrdering", - "description": "Ordering Enum for ImageLinked", + "name": "StatusState", + "description": "Enum for StatusState", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "pending", + "description": "Value for pending", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "Value for success", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error", + "description": "Value for error", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "failure", + "description": "Value for failure", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_StatusOrdering", + "description": "Ordering Enum for Status", "fields": null, "inputFields": null, "interfaces": null, @@ -34033,6 +35096,66 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state_asc", + "description": "Ascending sort for state", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state_desc", + "description": "Descending sort for state", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_asc", + "description": "Ascending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_desc", + "description": "Descending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetUrl_asc", + "description": "Ascending sort for targetUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetUrl_desc", + "description": "Descending sort for targetUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "context_asc", + "description": "Ascending sort for context", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "context_desc", + "description": "Descending sort for context", + "isDeprecated": false, + "deprecationReason": null + }, { "name": "timestamp_asc", "description": "Ascending sort for timestamp", @@ -34050,8 +35173,8 @@ }, { "kind": "OBJECT", - "name": "ImageLinked", - "description": "ImageLinked-Node", + "name": "Status", + "description": "Status-Node", "fields": [ { "name": "_id", @@ -34066,8 +35189,32 @@ "deprecationReason": null }, { - "name": "timestamp", - "description": "timestamp of ImageLinked", + "name": "id", + "description": "id of Status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": "state of Status", + "args": [], + "type": { + "kind": "ENUM", + "name": "StatusState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": "description of Status", "args": [], "type": { "kind": "SCALAR", @@ -34078,43 +35225,36 @@ "deprecationReason": null }, { - "name": "image", - "description": "ImageLinked image DockerImage", - "args": [ - { - "name": "image", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "targetUrl", + "description": "targetUrl of Status", + "args": [], "type": { - "kind": "OBJECT", - "name": "DockerImage", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "context", + "description": "context of Status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of Status", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -34122,7 +35262,7 @@ }, { "name": "commit", - "description": "ImageLinked commit Commit", + "description": "Status commit Commit", "args": [ { "name": "sha", @@ -34171,8 +35311,8 @@ }, { "kind": "ENUM", - "name": "_ReleaseOrdering", - "description": "Ordering Enum for Release", + "name": "_PushOrdering", + "description": "Ordering Enum for Push", "fields": null, "inputFields": null, "interfaces": null, @@ -34202,26 +35342,26 @@ "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_asc", - "description": "Ascending sort for timestamp", + "name": "branch_asc", + "description": "Ascending sort for branch", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp_desc", - "description": "Descending sort for timestamp", + "name": "branch_desc", + "description": "Descending sort for branch", "isDeprecated": false, "deprecationReason": null } @@ -34230,8 +35370,8 @@ }, { "kind": "ENUM", - "name": "_TeamOrdering", - "description": "Ordering Enum for Team", + "name": "_HerokuAppOrdering", + "description": "Ordering Enum for HerokuApp", "fields": null, "inputFields": null, "interfaces": null, @@ -34249,159 +35389,148 @@ "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_desc", - "description": "Descending sort for id", + "name": "app_asc", + "description": "Ascending sort for app", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_asc", - "description": "Ascending sort for name", + "name": "app_desc", + "description": "Descending sort for app", "isDeprecated": false, "deprecationReason": null }, { - "name": "name_desc", - "description": "Descending sort for name", + "name": "url_asc", + "description": "Ascending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "description_asc", - "description": "Ascending sort for description", + "name": "url_desc", + "description": "Descending sort for url", "isDeprecated": false, "deprecationReason": null }, { - "name": "description_desc", - "description": "Descending sort for description", + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "iconUrl_asc", - "description": "Ascending sort for iconUrl", + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "iconUrl_desc", - "description": "Descending sort for iconUrl", + "name": "user_asc", + "description": "Ascending sort for user", "isDeprecated": false, "deprecationReason": null }, { - "name": "createdAt_asc", - "description": "Ascending sort for createdAt", + "name": "user_desc", + "description": "Descending sort for user", "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", + "name": "appId_asc", + "description": "Ascending sort for appId", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "appId_desc", + "description": "Descending sort for appId", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "release_asc", + "description": "Ascending sort for release", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "release_desc", + "description": "Descending sort for release", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "HerokuApp", + "description": "HerokuApp-Node", + "fields": [ { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url_desc", - "description": "Descending sort for url", + "name": "app", + "description": "app of HerokuApp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "data_asc", - "description": "Ascending sort for data", + "name": "url", + "description": "url of HerokuApp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "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", + "name": "timestamp", + "description": "timestamp of HerokuApp", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "id of PushImpact", + "name": "user", + "description": "user of HerokuApp", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "url of PushImpact", + "name": "appId", + "description": "appId of HerokuApp", "args": [], "type": { "kind": "SCALAR", @@ -34412,8 +35541,8 @@ "deprecationReason": null }, { - "name": "data", - "description": "data of PushImpact", + "name": "release", + "description": "release of HerokuApp", "args": [], "type": { "kind": "SCALAR", @@ -34424,21 +35553,21 @@ "deprecationReason": null }, { - "name": "push", - "description": "PushImpact push Push", + "name": "commits", + "description": "HerokuApp commits Commit", "args": [ { - "name": "id", + "name": "sha", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -34448,7 +35577,41 @@ "defaultValue": null }, { - "name": "branch", + "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", @@ -34459,9 +35622,13 @@ } ], "type": { - "kind": "OBJECT", - "name": "Push", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -34474,8 +35641,8 @@ }, { "kind": "ENUM", - "name": "_PullRequestImpactOrdering", - "description": "Ordering Enum for PullRequestImpact", + "name": "_ApplicationOrdering", + "description": "Ordering Enum for Application", "fields": null, "inputFields": null, "interfaces": null, @@ -34505,14 +35672,50 @@ "deprecationReason": null }, { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "state_asc", + "description": "Ascending sort for state", "isDeprecated": false, "deprecationReason": null }, { - "name": "url_desc", - "description": "Descending sort for url", + "name": "state_desc", + "description": "Descending sort for state", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host_asc", + "description": "Ascending sort for host", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host_desc", + "description": "Descending sort for host", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_desc", + "description": "Descending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "domain_asc", + "description": "Ascending sort for domain", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "domain_desc", + "description": "Descending sort for domain", "isDeprecated": false, "deprecationReason": null }, @@ -34533,8 +35736,8 @@ }, { "kind": "OBJECT", - "name": "PullRequestImpact", - "description": "PullRequestImpact-Node", + "name": "Application", + "description": "Application-Node", "fields": [ { "name": "_id", @@ -34550,7 +35753,7 @@ }, { "name": "id", - "description": "id of PullRequestImpact", + "description": "id of Application", "args": [], "type": { "kind": "SCALAR", @@ -34561,8 +35764,44 @@ "deprecationReason": null }, { - "name": "url", - "description": "url of PullRequestImpact", + "name": "state", + "description": "state of Application", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "host", + "description": "host of Application", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of Application", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "domain", + "description": "domain of Application", "args": [], "type": { "kind": "SCALAR", @@ -34574,7 +35813,7 @@ }, { "name": "data", - "description": "data of PullRequestImpact", + "description": "data of Application", "args": [], "type": { "kind": "SCALAR", @@ -34585,31 +35824,11 @@ "deprecationReason": null }, { - "name": "pullRequest", - "description": "PullRequestImpact pullRequest PullRequest", + "name": "commits", + "description": "Application commits Commit", "args": [ { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prId", + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -34619,7 +35838,7 @@ "defaultValue": null }, { - "name": "name", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -34629,31 +35848,35 @@ "defaultValue": null }, { - "name": "body", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_CommitOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "merged", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null @@ -34667,92 +35890,16 @@ "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 + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -34765,8 +35912,8 @@ }, { "kind": "ENUM", - "name": "_ResourceProviderOrdering", - "description": "Ordering Enum for ResourceProvider", + "name": "_FingerprintOrdering", + "description": "Ordering Enum for Fingerprint", "fields": null, "inputFields": null, "interfaces": null, @@ -34784,122 +35931,201 @@ "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", - "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", + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "atmTeamId_desc", - "description": "Descending sort for atmTeamId", + "name": "sha_asc", + "description": "Ascending sort for sha", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_asc", - "description": "Ascending sort for id", + "name": "sha_desc", + "description": "Descending sort for sha", "isDeprecated": false, "deprecationReason": null }, { - "name": "id_desc", - "description": "Descending sort for id", + "name": "data_asc", + "description": "Ascending sort for data", "isDeprecated": false, "deprecationReason": null }, { - "name": "url_asc", - "description": "Ascending sort for url", + "name": "data_desc", + "description": "Descending sort for data", "isDeprecated": false, "deprecationReason": null - }, + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Fingerprint", + "description": "Fingerprint-Node", + "fields": [ { - "name": "url_desc", - "description": "Descending sort for url", + "name": "_id", + "description": "internal node id", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId_asc", - "description": "Ascending sort for providerId", - "isDeprecated": false, - "deprecationReason": null + "name": "name", + "description": "name of Fingerprint", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "providerId_desc", - "description": "Descending sort for providerId", + "name": "sha", + "description": "sha of Fingerprint", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl_asc", - "description": "Ascending sort for apiUrl", + "name": "data", + "description": "data of Fingerprint", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "apiUrl_desc", - "description": "Descending sort for apiUrl", + "name": "commit", + "description": "Fingerprint commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "description": "Fingerprint of some artifact in an SCM repository", + "fields": [ { - "name": "gitUrl_asc", - "description": "Ascending sort for gitUrl", + "name": "data", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "gitUrl_desc", - "description": "Descending sort for gitUrl", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_asc", - "description": "Ascending sort for providerType", + "name": "displayType", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerType_desc", - "description": "Descending sort for providerType", + "name": "displayValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DockerRegistryProvider", - "description": "", - "fields": [ + }, { - "name": "_id", + "name": "id", "description": "", "args": [], "type": { @@ -34907,7 +36133,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null } }, @@ -34915,7 +36141,7 @@ "deprecationReason": null }, { - "name": "id", + "name": "name", "description": "", "args": [], "type": { @@ -34923,7 +36149,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -34931,7 +36157,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "sha", "description": "", "args": [], "type": { @@ -34954,177 +36180,213 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "DockerRegistryType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "GenericSourceFingerprint", + "ofType": null }, { - "name": "providerId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "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": "state", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ResourceProviderState", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "team", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "authProviderId", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", - "description": "", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", "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": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ + }, { - "kind": "INTERFACE", - "name": "ResourceProvider", - "ofType": null + "name": "timestamp_desc", + "description": "Descending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isRemote_asc", + "description": "Ascending sort for isRemote", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isRemote_desc", + "description": "Descending sort for isRemote", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "remoteRepoHtmlUrl_asc", + "description": "Ascending sort for remoteRepoHtmlUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "remoteRepoHtmlUrl_desc", + "description": "Descending sort for remoteRepoHtmlUrl", + "isDeprecated": false, + "deprecationReason": null } ], - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "DockerRegistryType", - "description": "", + "name": "_SCMProviderOrdering", + "description": "Ordering Enum for SCMProvider", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "JFrog", - "description": "", + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "DockerHub", - "description": "", + "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 } @@ -35133,8 +36395,8 @@ }, { "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "description": "Ordering Enum for UserJoinedChannel", + "name": "_ChatTeamOrdering", + "description": "Ordering Enum for ChatTeam", "fields": null, "inputFields": null, "interfaces": null, @@ -35162,31 +36424,506 @@ "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": "UserJoinedChannel", - "description": "UserJoinedChannel-Node", + "name": "AtomistRegistration", + "description": "", "fields": [ { - "name": "_id", - "description": "internal node id", + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_RepoFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "id", - "description": "id of UserJoinedChannel", - "args": [], + "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", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowId_asc", + "description": "Ascending sort for workflowId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "workflowId_desc", + "description": "Descending sort for workflowId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_asc", + "description": "Ascending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider_desc", + "description": "Descending sort for provider", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config_asc", + "description": "Ascending sort for config", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "config_desc", + "description": "Descending sort for config", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_DeletedBranchOrdering", + "description": "Ordering Enum for DeletedBranch", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_asc", + "description": "Ascending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp_desc", + "description": "Descending sort for timestamp", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeletedBranch", + "description": "DeletedBranch-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 DeletedBranch", + "args": [], "type": { "kind": "SCALAR", "name": "ID", @@ -35196,8 +36933,32 @@ "deprecationReason": null }, { - "name": "user", - "description": "UserJoinedChannel user ChatId", + "name": "name", + "description": "name of DeletedBranch", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "timestamp of DeletedBranch", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": "DeletedBranch repo Repo", "args": [ { "name": "id", @@ -35210,7 +36971,7 @@ "defaultValue": null }, { - "name": "screenName", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -35220,7 +36981,7 @@ "defaultValue": null }, { - "name": "userId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -35230,27 +36991,37 @@ "defaultValue": null }, { - "name": "provider", + "name": "allowRebaseMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isAtomistBot", + "name": "allowSquashMerge", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "isOwner", + "name": "allowMergeCommit", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", "description": "", "type": { "kind": "SCALAR", @@ -35260,7 +37031,7 @@ "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", @@ -35270,7 +37041,30 @@ "defaultValue": null }, { - "name": "isAdmin", + "name": "defaultBranch", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "commit", + "description": "DeletedBranch commit Commit", + "args": [ + { + "name": "sha", "description": "", "type": { "kind": "SCALAR", @@ -35280,7 +37074,7 @@ "defaultValue": null }, { - "name": "isBot", + "name": "message", "description": "", "type": { "kind": "SCALAR", @@ -35290,7 +37084,7 @@ "defaultValue": null }, { - "name": "timezoneLabel", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -35302,15 +37096,15 @@ ], "type": { "kind": "OBJECT", - "name": "ChatId", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "channel", - "description": "UserJoinedChannel channel ChatChannel", + "name": "pullRequests", + "description": "DeletedBranch pullRequests PullRequest", "args": [ { "name": "id", @@ -35323,7 +37117,17 @@ "defaultValue": null }, { - "name": "name", + "name": "number", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prId", "description": "", "type": { "kind": "SCALAR", @@ -35333,7 +37137,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -35343,7 +37147,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -35353,7 +37157,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -35363,7 +37167,7 @@ "defaultValue": null }, { - "name": "isDefault", + "name": "merged", "description": "", "type": { "kind": "SCALAR", @@ -35373,33 +37177,141 @@ "defaultValue": null }, { - "name": "botInvitedSelf", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "archived", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ChatChannel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + { + "name": "branchName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergedAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_PullRequestOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "first", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mergeStatus", + "description": "", + "type": { + "kind": "ENUM", + "name": "MergeStatus", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PullRequest", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -35407,13 +37319,69 @@ "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": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "owner_asc", + "description": "Ascending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner_desc", + "description": "Descending sort for owner", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType_asc", + "description": "Ascending sort for ownerType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerType_desc", + "description": "Descending sort for ownerType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, { "kind": "OBJECT", - "name": "GenericResourceUser", + "name": "GitHubAppInstallation", "description": "", "fields": [ { - "name": "id", + "name": "_id", "description": "", "args": [], "type": { @@ -35421,7 +37389,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, @@ -35429,51 +37397,59 @@ "deprecationReason": null }, { - "name": "_id", + "name": "installationId", "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": "credential", + "name": "permissions", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "person", + "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": "provider", + "name": "owner", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -35481,40 +37457,23 @@ "deprecationReason": null }, { - "name": "login", + "name": "ownerType", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SystemAccount", - "description": "", - "fields": [ + }, { - "name": "id", + "name": "state", "description": "", "args": [], "type": { @@ -35522,7 +37481,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -35530,55 +37489,39 @@ "deprecationReason": null }, { - "name": "_id", + "name": "avatarUrl", "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "description", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "SCALAR", + "name": "String", "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": "login", + "name": "gitHubAppResourceProvider", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", "ofType": null } }, @@ -35586,12 +37529,12 @@ "deprecationReason": null }, { - "name": "createdBy", + "name": "token", "description": "", "args": [], "type": { "kind": "OBJECT", - "name": "Person", + "name": "GitHubAppInstallationToken", "ofType": null }, "isDeprecated": false, @@ -35599,21 +37542,31 @@ } ], "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } - ], + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "name": "GitHubAppResourceProvider", "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": "", @@ -35663,20 +37616,16 @@ "deprecationReason": null }, { - "name": "clusters", + "name": "url", "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KubernetesCluster", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, @@ -35687,66 +37636,27 @@ "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": "state", - "description": "", + "name": "private", + "description": "private is this provider reachable on the public internet", "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": "Boolean", "ofType": null } }, @@ -35754,50 +37664,31 @@ "deprecationReason": null }, { - "name": "authProviderId", + "name": "apiUrl", "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "credential", + "name": "gitUrl", "description": "", "args": [], "type": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "webhooks", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Webhook", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -35805,64 +37696,24 @@ "deprecationReason": null }, { - "name": "url", - "description": "", - "args": [], - "type": { - "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": "KubernetesCluster", - "description": "", - "fields": [ - { - "name": "name", + "name": "providerType", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Password", - "description": "", - "fields": [ + }, { - "name": "_id", - "description": "", + "name": "applicationId", + "description": "the id of the atomist github app as provided by github", "args": [], "type": { "kind": "NON_NULL", @@ -35877,15 +37728,15 @@ "deprecationReason": null }, { - "name": "id", - "description": "", + "name": "applicationName", + "description": "the name of the atomist github app", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -35893,151 +37744,231 @@ "deprecationReason": null }, { - "name": "owner", + "name": "state", "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ResourceUser", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "secret", + "name": "team", "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Team", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_Ordering", - "description": "asc or desc ordering. Must be used with orderBy", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "desc", - "description": "Descending order", - "isDeprecated": false, - "deprecationReason": null }, { - "name": "asc", - "description": "Ascending order", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmBuildIdentifier", - "description": null, - "fields": [ - { - "name": "identifier", - "description": null, - "args": [], + "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "gitHubAppInstallations", + "description": "", "args": [ { - "name": "name", - "description": null, + "name": "installationId", + "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, + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "orderBy", + "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "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": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmBuildIdentifier", + "name": "authProviderId", + "description": "ID of the auth provider protecting this resource", "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + }, + "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 + } + }, + "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, @@ -36045,47 +37976,49 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SdmBuildIdentifierRepository", - "description": null, + "name": "GitHubAppInstallationToken", + "description": "", "fields": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, + "name": "secret", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "permissions", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -36098,21 +38031,21 @@ }, { "kind": "ENUM", - "name": "SdmDeployState", - "description": null, + "name": "_GitHubAppResourceUserOrdering", + "description": "Ordering Enum for SCMId", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "requested", - "description": null, + "name": "login_asc", + "description": "Ascending sort for login", "isDeprecated": false, "deprecationReason": null }, { - "name": "disabled", - "description": null, + "name": "login_desc", + "description": "Descending sort for login", "isDeprecated": false, "deprecationReason": null } @@ -36121,178 +38054,155 @@ }, { "kind": "OBJECT", - "name": "SdmDeployEnablement", - "description": null, + "name": "GitHubAppResourceUser", + "description": "", "fields": [ { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerId", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "state", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "ENUM", - "name": "SdmDeployState", - "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 SdmDeployEnablement", - "args": [], - "type": { - "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": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "provider", + "description": "", "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, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "OBJECT", - "name": "SdmVersionRepository", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "gitHubAppProvider", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "version", - "description": null, + "name": "gitHubAppInstallations", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppUserInstallation", + "ofType": null + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmVersion", + "name": "login", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "person", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, @@ -36300,30 +38210,40 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SdmVersionRepository", - "description": null, + "name": "GitHubAppUserInstallation", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "installationId", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "permissions", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -36334,98 +38254,40 @@ "deprecationReason": null }, { - "name": "providerId", - "description": null, + "name": "owner", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SdmGoalSetBadge", - "description": null, - "fields": [ + }, { - "name": "repo", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SdmGoalSetBadgeRepository", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sdm", - "description": null, + "name": "ownerType", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "token", - "description": null, + "name": "avatarUrl", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -36434,18 +38296,6 @@ }, "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, @@ -36454,190 +38304,239 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmGoalSetBadgeRepository", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_GitHubIdOrdering", + "description": "Ordering Enum for GitHubId", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": null, - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "SdmPreference", - "description": null, - "fields": [ + "kind": "INPUT_OBJECT", + "name": "_K8ContainerFilter", + "description": "", + "fields": null, + "inputFields": [ { - "name": "key", - "description": null, - "args": [], + "name": "state", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_ImageLinkedOrdering", + "description": "Ordering Enum for ImageLinked", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "ttl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmPreference", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "SdmRepoProvenance", - "description": null, + "name": "ImageLinked", + "description": "ImageLinked-Node", "fields": [ { - "name": "provenance", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { - "kind": "OBJECT", - "name": "SdmProvenance", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "timestamp", + "description": "timestamp of ImageLinked", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": "ImageLinked image DockerImage", "args": [ { - "name": "name", - "description": null, + "name": "image", + "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": "imageName", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "providerId", - "description": null, + "name": "timestamp", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "SdmRepository", + "name": "DockerImage", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this SdmRepoProvenance", - "args": [], + "name": "commit", + "description": "ImageLinked commit Commit", + "args": [ + { + "name": "sha", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, @@ -36650,375 +38549,238 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "PodDeployment", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_ReleaseOrdering", + "description": "Ordering Enum for Release", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "deploymentName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "imageTag", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "previousSha", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "targetReplicas", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "name_desc", + "description": "Descending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, + "name": "timestamp_asc", + "description": "Ascending sort for timestamp", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this PodDeployment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "timestamp_desc", + "description": "Descending sort for timestamp", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "description": null, + "name": "_TeamOrdering", + "description": "Ordering Enum for Team", "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "references", - "description": null, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "fixes", - "description": null, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CommitIssueRelationship", - "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 - } - ], - "type": { - "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "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": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "CommitIssueRelationshipType", - "ofType": null - }, + "name": "name_asc", + "description": "Ascending sort for name", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this CommitIssueRelationship", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "name_desc", + "description": "Descending sort for name", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_asc", + "description": "Ascending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_desc", + "description": "Descending sort for description", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "iconUrl_asc", + "description": "Ascending sort for iconUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "iconUrl_desc", + "description": "Descending sort for iconUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_asc", + "description": "Ascending sort for createdAt", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_desc", + "description": "Descending sort for createdAt", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CommitIssueRelationshipCommit", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_PushImpactOrdering", + "description": "Ordering Enum for PushImpact", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_asc", + "description": "Ascending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_desc", + "description": "Descending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_asc", + "description": "Ascending sort for data", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_desc", + "description": "Descending sort for data", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CommitIssueRelationshipIssue", - "description": null, + "name": "PushImpact", + "description": "PushImpact-Node", "fields": [ { - "name": "name", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "id", + "description": "id of PushImpact", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "url of PushImpact", "args": [], "type": { "kind": "SCALAR", @@ -37029,8 +38791,8 @@ "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "data", + "description": "data of PushImpact", "args": [], "type": { "kind": "SCALAR", @@ -37039,147 +38801,147 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Deployment", - "description": null, - "fields": [ + }, { - "name": "commit", - "description": null, + "name": "push", + "description": "PushImpact push Push", "args": [ { - "name": "sha", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "timestamp", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "branch", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { "kind": "OBJECT", - "name": "DeploymentCommit", + "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": "environment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Deployment", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_asc", + "description": "Ascending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_desc", + "description": "Descending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_asc", + "description": "Ascending sort for data", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_desc", + "description": "Descending sort for data", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "DeploymentCommit", - "description": null, + "name": "PullRequestImpact", + "description": "PullRequestImpact-Node", "fields": [ { - "name": "owner", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, + "name": "id", + "description": "id of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sha", - "description": null, + "name": "url", + "description": "url of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", @@ -37188,21 +38950,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "IssueRelationship", - "description": null, - "fields": [ + }, { - "name": "relationshipId", - "description": null, + "name": "data", + "description": "data of PullRequestImpact", "args": [], "type": { "kind": "SCALAR", @@ -37213,219 +38964,352 @@ "deprecationReason": null }, { - "name": "source", - "description": null, + "name": "pullRequest", + "description": "PullRequestImpact pullRequest PullRequest", "args": [ { - "name": "issue", - "description": null, + "name": "id", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "number", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "prId", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": null, - "args": [ + }, { - "name": "issue", - "description": null, + "name": "name", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owner", - "description": null, + "name": "body", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "repo", - "description": null, + "name": "state", + "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "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": "IssueRelationshipIssue", + "name": "PullRequest", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_ResourceProviderOrdering", + "description": "Ordering Enum for ResourceProvider", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this IssueRelationship", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "IssueRelationshipIssue", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "_GitHubProviderOrdering", + "description": "Ordering Enum for GitHubProvider", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "issue", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_desc", + "description": "Descending sort for id", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_asc", + "description": "Ascending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_desc", + "description": "Descending sort for url", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId_asc", + "description": "Ascending sort for providerId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId_desc", + "description": "Descending sort for providerId", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiUrl_asc", + "description": "Ascending sort for apiUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiUrl_desc", + "description": "Descending sort for apiUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitUrl_asc", + "description": "Ascending sort for gitUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gitUrl_desc", + "description": "Descending sort for gitUrl", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerType_asc", + "description": "Ascending sort for providerType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerType_desc", + "description": "Descending sort for providerType", "isDeprecated": false, "deprecationReason": null } ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "DockerRegistryType", + "description": "", + "fields": null, "inputFields": null, - "interfaces": [], - "enumValues": null, + "interfaces": null, + "enumValues": [ + { + "name": "JFrog", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DockerHub", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], "possibleTypes": null }, { "kind": "OBJECT", - "name": "Card", - "description": null, + "name": "DockerRegistryProvider", + "description": "", "fields": [ { - "name": "actionGroups", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -37433,15 +39317,15 @@ "deprecationReason": null }, { - "name": "actions", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardAction", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -37449,42 +39333,31 @@ "deprecationReason": null }, { - "name": "body", - "description": null, + "name": "id", + "description": "", "args": [], "type": { - "kind": "OBJECT", - "name": "CardBody", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "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 - } - ], + "name": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardCollaborator", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -37492,15 +39365,15 @@ "deprecationReason": null }, { - "name": "comments", - "description": null, + "name": "type", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardBody", + "kind": "ENUM", + "name": "DockerRegistryType", "ofType": null } }, @@ -37508,62 +39381,70 @@ "deprecationReason": null }, { - "name": "correlations", - "description": null, + "name": "providerId", + "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardCorrelation", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "events", - "description": null, + "name": "state", + "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CardEvent", - "ofType": null - } + "kind": "OBJECT", + "name": "ResourceProviderState", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goalSets", - "description": null, + "name": "team", + "description": "", "args": [ { - "name": "goalSetId", - "description": null, + "name": "id", + "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": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CardSdmGoalSet", + "name": "Team", "ofType": null } }, @@ -37571,8 +39452,8 @@ "deprecationReason": null }, { - "name": "key", - "description": null, + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -37583,8 +39464,20 @@ "deprecationReason": null }, { - "name": "post", - "description": null, + "name": "credential", + "description": "", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -37595,15 +39488,15 @@ "deprecationReason": null }, { - "name": "provenance", - "description": null, + "name": "webhooks", + "description": "", "args": [ { - "name": "name", - "description": null, + "name": "id", + "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -37614,23 +39507,63 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CardProvenance", + "name": "Webhook", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BinaryRepositoryType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "maven2", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "reactions", - "description": null, + "name": "npm", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "description": "", + "fields": [ + { + "name": "_typenames", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardReaction", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -37638,153 +39571,31 @@ "deprecationReason": null }, { - "name": "repository", - "description": null, - "args": [ - { - "name": "owner", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "slug", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CardRepository", - "ofType": null - }, - "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, - "deprecationReason": null - }, - { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ttl", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { "name": "id", - "description": "The ID of this Card", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionGroup", - "description": null, - "fields": [ - { - "name": "actions", - "description": null, + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardAction", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -37792,62 +39603,15 @@ "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": [ - { - "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, + "name": "name", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -37855,15 +39619,15 @@ "deprecationReason": null }, { - "name": "parameterOptions", - "description": null, + "name": "type", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionParameterOption", + "kind": "ENUM", + "name": "BinaryRepositoryType", "ofType": null } }, @@ -37871,15 +39635,15 @@ "deprecationReason": null }, { - "name": "parameters", - "description": null, + "name": "providerId", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionParameter", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -37887,32 +39651,57 @@ "deprecationReason": null }, { - "name": "registration", - "description": null, + "name": "state", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", - "description": null, - "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -37923,31 +39712,20 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOptionGroup", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "url", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -37958,15 +39736,26 @@ "deprecationReason": null }, { - "name": "options", - "description": null, - "args": [], + "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": "CardActionParameterOption", + "name": "Webhook", "ofType": null } }, @@ -37975,270 +39764,332 @@ } ], "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardActionParameterOption", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": [ { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null } ], - "inputFields": null, - "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "CardActionParameter", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], + "kind": "ENUM", + "name": "_UserJoinedChannelOrdering", + "description": "Ordering Enum for UserJoinedChannel", + "fields": null, "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardBody", - "description": null, - "fields": [ - { - "name": "avatar", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, + "interfaces": null, + "enumValues": [ { - "name": "hint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_asc", + "description": "Ascending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "atmTeamId_desc", + "description": "Descending sort for atmTeamId", "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "id_asc", + "description": "Ascending sort for id", "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "name": "id_desc", + "description": "Descending sort for id", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardCollaborator", - "description": null, + "name": "UserJoinedChannel", + "description": "UserJoinedChannel-Node", "fields": [ { - "name": "avatar", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", - "description": null, + "name": "_id", + "description": "internal node id", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, + "name": "id", + "description": "id of UserJoinedChannel", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "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": "icon", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, + "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": "OBJECT", + "name": "ChatId", + "ofType": null + }, + "isDeprecated": false, "deprecationReason": null }, { - "name": "link", - "description": null, - "args": [], + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ChatChannel", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GenericResourceUser", + "description": "", + "fields": [ { - "name": "shortTitle", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "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": "ts", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -38249,73 +40100,99 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CorrelationBody", - "description": null, - "fields": [ + }, { - "name": "icon", - "description": null, + "name": "person", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": 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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardEvent", - "description": null, + "name": "SystemAccount", + "description": "", "fields": [ { - "name": "actionGroups", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardActionGroup", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -38323,15 +40200,15 @@ "deprecationReason": null }, { - "name": "actions", - "description": null, + "name": "id", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardAction", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -38339,36 +40216,79 @@ "deprecationReason": null }, { - "name": "icon", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ts", - "description": null, + "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Person", "ofType": null }, "isDeprecated": false, @@ -38376,25 +40296,31 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardSdmGoalSet", - "description": null, + "name": "KubernetesClusterProvider", + "description": "", "fields": [ { - "name": "actions", - "description": null, + "name": "_typenames", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardAction", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -38402,60 +40328,76 @@ "deprecationReason": null }, { - "name": "duration", - "description": null, + "name": "_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": "goalSet", - "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": "goalSetId", - "description": null, + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "goals", - "description": null, + "name": "clusters", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CardSdmGoal", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KubernetesCluster", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "registration", - "description": null, + "name": "providerId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -38467,49 +40409,57 @@ }, { "name": "state", - "description": null, + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ResourceProviderState", "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": "CardSdmGoal", - "description": null, - "fields": [ - { - "name": "actions", - "description": null, - "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 + }, + { + "name": "createdAt", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CardAction", + "name": "Team", "ofType": null } }, @@ -38517,8 +40467,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "authProviderId", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -38529,20 +40479,47 @@ "deprecationReason": null }, { - "name": "environment", - "description": null, + "name": "credential", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "Credential", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "link", - "description": 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": { "kind": "SCALAR", @@ -38551,120 +40528,255 @@ }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "KubernetesCluster", + "description": "", + "fields": [ + { + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Password", + "description": "", + "fields": [ + { + "name": "_typenames", + "description": "", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "logLink", - "description": null, + "name": "_id", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "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": "state", - "description": null, + "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 }, { - "name": "ts", - "description": null, + "name": "secret", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardProvenance", - "description": null, + "name": "CommitFingerprintImpact", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "diffs", + "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": "OBJECT", + "name": "FingerprintDiff", + "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": "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 + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "branch", + "description": "", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Branch", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CardReaction", - "description": null, - "fields": [ + }, { - "name": "avatar", - "description": null, + "name": "commit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "login", - "description": null, + "name": "previousCommit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "reaction", - "description": null, + "name": "repo", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Repo", "ofType": null }, "isDeprecated": false, @@ -38678,76 +40790,97 @@ }, { "kind": "OBJECT", - "name": "CardRepository", - "description": null, + "name": "FingerprintDiff", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "from", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "owner", - "description": null, + "name": "to", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PagingInfoInput", + "description": "", + "fields": null, + "inputFields": [ { - "name": "slug", - "description": null, - "args": [], + "name": "after", + "description": "", "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "CardTitle", - "description": null, + "name": "CommitsWithFingerprints", + "description": "", "fields": [ { - "name": "icon", - "description": null, + "name": "_paging", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PagingInfo", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "text", - "description": null, + "name": "commits", + "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": "FingerprintedCommit", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -38760,51 +40893,66 @@ }, { "kind": "OBJECT", - "name": "Notification", - "description": null, + "name": "PagingInfo", + "description": "", "fields": [ { - "name": "actions", - "description": null, + "name": "after", + "description": "If present, indicates that there are more results", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotificationAction", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FingerprintedCommit", + "description": "A commit", + "fields": [ { - "name": "body", - "description": null, + "name": "analysis", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "contentType", - "description": null, + "name": "isDefaultBranch", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -38812,63 +40960,55 @@ "deprecationReason": null }, { - "name": "key", - "description": null, + "name": "branch", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Branch", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "post", - "description": null, + "name": "commit", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "recipient", - "description": null, - "args": [ - { - "name": "address", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "repo", + "description": "", + "args": [], "type": { "kind": "OBJECT", - "name": "NotificationRecipient", + "name": "Repo", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FingerprintAggregates", + "description": "", + "fields": [ { - "name": "ts", - "description": null, + "name": "inRepos", + "description": "How many repos contain this fingeprint type/name?", "args": [], "type": { "kind": "NON_NULL", @@ -38883,74 +41023,63 @@ "deprecationReason": null }, { - "name": "ttl", - "description": null, + "name": "latestSemVerAvailable", + "description": "Latest semver available if the SourceFingerprint supports it", "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Notification", + "name": "latestSemVerUsed", + "description": "Latest semver used if the SourceFingerprint supports it", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "SourceFingerprintStats", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationAction", - "description": null, - "fields": [ + }, { - "name": "command", - "description": null, + "name": "mostFrequentlyUsed", + "description": "Which value/sha has been most frequently seen?", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "SourceFingerprintStats", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "parameterName", - "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": "parameterOptionGroups", - "description": null, + "name": "totalRepos", + "description": "How many repos have been seen in total?", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -38958,31 +41087,42 @@ "deprecationReason": null }, { - "name": "parameterOptions", - "description": null, + "name": "totalVariants", + "description": "How many different values/shas are there for this type/name?", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOption", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SourceFingerprintStats", + "description": "", + "fields": [ { - "name": "parameters", - "description": null, + "name": "fingerprint", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameter", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null } }, @@ -38990,49 +41130,17 @@ "deprecationReason": null }, { - "name": "registration", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "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 @@ -39045,31 +41153,19 @@ }, { "kind": "OBJECT", - "name": "NotificationActionParameterOptionGroup", - "description": null, + "name": "FingerprintTarget", + "description": "", "fields": [ { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "options", - "description": null, + "name": "fingerprint", + "description": "", "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "NotificationActionParameterOption", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null } }, @@ -39084,64 +41180,69 @@ }, { "kind": "OBJECT", - "name": "NotificationActionParameterOption", - "description": null, + "name": "FingerprintCounts", + "description": "", "fields": [ { - "name": "name", - "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": "value", - "description": null, + "name": "mostFrequentlyUsed", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationActionParameter", - "description": null, - "fields": [ + }, { - "name": "name", - "description": null, + "name": "mostRecentlyUsed", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INTERFACE", + "name": "SourceFingerprint", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "value", - "description": null, + "name": "types", + "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": "FingerprintTypeCount", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null @@ -39154,12 +41255,52 @@ }, { "kind": "OBJECT", - "name": "NotificationRecipient", - "description": null, + "name": "FingerprintTypeCount", + "description": "", "fields": [ { - "name": "address", - "description": null, + "name": "count", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "names", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FinterprintNameCount", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -39181,71 +41322,84 @@ }, { "kind": "OBJECT", - "name": "Feedback", - "description": null, + "name": "FinterprintNameCount", + "description": "", "fields": [ { - "name": "email", - "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": "message", - "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtmJobState", + "description": "The state of an AtmJob", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "preparing", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "invocation_id", - "description": "compositeId", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, + "name": "running", + "description": "", "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this Feedback", - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, + "name": "completed", + "description": "", "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "ManifestoSignature", - "description": null, + "name": "AtmJob", + "description": "A AtmJob, made up of many AtmJobTasks", "fields": [ { - "name": "userId", - "description": "compositeId", + "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", @@ -39256,20 +41410,40 @@ "deprecationReason": null }, { - "name": "email", - "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": "userName", - "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", @@ -39280,8 +41454,8 @@ "deprecationReason": null }, { - "name": "user", - "description": null, + "name": "description", + "description": "A description for this AtmJob", "args": [], "type": { "kind": "SCALAR", @@ -39293,78 +41467,91 @@ }, { "name": "id", - "description": "The ID of this ManifestoSignature", + "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": "AtomistLog", - "description": "Atomist log messages", - "fields": [ + }, { - "name": "timestamp", - "description": "Status timestamp", + "name": "jobCount", + "description": "The number of AtmJobTasks that make up this job", "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": "team_id", - "description": "Team ID for which log message is produced", + "name": "jobTasks", + "description": "A list of AtmJobTasks that make up this job", "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": "AtmJobTask", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "level", - "description": "Log message level: debug, info, warn, error, fatal", + "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": "message", - "description": "Log message", + "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": "category", - "description": "Grouping, namespace etc.", + "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", @@ -39375,92 +41562,65 @@ "deprecationReason": null }, { - "name": "correlation_context", - "description": "Atomist log correlation context", - "args": [ - { - "name": "correlation_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "state", + "description": "The AtmJobState of this AtmJob", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistLogCorrelationContext", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobState", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "id", - "description": "The ID of this AtomistLog", + "name": "taskCount", + "description": "The number of AtmJobTasks that make up this job", "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "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": "AtomistLogCorrelationContext", - "description": "Atomist log correlation context", - "fields": [ + }, { - "name": "correlation_id", - "description": "Correlation ID", + "name": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJob is updated", "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": "automation", - "description": "Automation for which log message is produced", - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "team", + "description": "", + "args": [], "type": { - "kind": "OBJECT", - "name": "AtomistLogAutomation", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -39473,12 +41633,12 @@ }, { "kind": "OBJECT", - "name": "AtomistLogAutomation", - "description": "Automation for which log message is produced", + "name": "AtmJobTask", + "description": "A Task that makes up part of a AtmJob", "fields": [ { - "name": "name", - "description": "Automation name", + "name": "completedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask was considered complete", "args": [], "type": { "kind": "SCALAR", @@ -39489,77 +41649,43 @@ "deprecationReason": null }, { - "name": "version", - "description": "Automation description", + "name": "createdAt", + "description": "An ISO8601 timestamp generated by the API when the AtmJobTask is created", "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 - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MutationType", - "description": "", - "fields": [ + }, { - "name": "createDockerRegistryProvider", - "description": "Creates a new docker registry provider", - "args": [ - { - "name": "type", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DockerRegistryType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "data", + "description": "Used to store additional information about this AtmJobTask", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this AtmJobTask. Generated by the API.", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DockerRegistryProvider", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -39567,44 +41693,15 @@ "deprecationReason": null }, { - "name": "configureDockerRegistryProvider", - "description": "Configure an existing docker registry provider", - "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": "DockerRegistryProviderInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "isCompleted", + "description": "Is true if the task is in a completed state", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DockerRegistryProvider", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -39612,15 +41709,15 @@ "deprecationReason": null }, { - "name": "createGitHubResourceProvider", - "description": "Creates SCMProvider for github with a bunch of defaults", + "name": "job", + "description": "The owning job", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "AtmJob", "ofType": null } }, @@ -39628,44 +41725,27 @@ "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": "message", + "description": "Used to store additional information about the state of this AtmJobTask", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": "A name for this AtmJobTask", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -39673,40 +41753,15 @@ "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": "state", + "description": "The AtmJobTaskState of this AtmJobTask", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "ENUM", + "name": "AtmJobTaskState", "ofType": null } }, @@ -39714,65 +41769,174 @@ "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": "updatedAt", + "description": "An ISO8601 timestamp set by the API when the AtmJobTask is updated", + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SCMProvider", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtmJobTaskState", + "description": "The state of a AtmJobTask", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "created", + "description": "", + "isDeprecated": false, + "deprecationReason": null }, { - "name": "deleteResourceProvider", + "name": "running", "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "failed", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Ok", + "description": "", + "fields": [ + { + "name": "ok", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BucketUnit", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "YEAR", + "description": "Group events by year.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MONTH", + "description": "Group events by month.", + "isDeprecated": false, + "deprecationReason": 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 + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "EventType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CHAT", + "description": "Chat events which have been received.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CUSTOM", + "description": "Custom events which have been received.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCM", + "description": "Events which have been received from an SCM source.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventsReportRow", + "description": "", + "fields": [ + { + "name": "bucket", + "description": "The start date-time of this row.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -39786,46 +41950,139 @@ "deprecationReason": null }, { - "name": "setCredential", - "description": "", + "name": "chatCount", + "description": "The number of chat events in this time bucket.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customCount", + "description": "The number of custom events in this time bucket.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scmCount", + "description": "The number of SCM events in this time bucket.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_Ordering", + "description": "asc or desc ordering. Must be used with orderBy", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "desc", + "description": "Descending order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "asc", + "description": "Ascending order", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "references", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fixes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationship", + "description": null, + "fields": [ + { + "name": "commit", + "description": null, "args": [ { - "name": "providerId", - "description": "", + "name": "sha", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "resourceUserId", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "credential", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CredentialInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -39833,75 +42090,54 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkCredentialToResourceProvider", - "description": "", + "name": "issue", + "description": null, "args": [ { - "name": "resourceProviderId", - "description": "", + "name": "name", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "credentialId", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Credential", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createWebhook", - "description": "create and expose a webhook over the public internet", - "args": [ + }, { - "name": "webhook", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -39909,116 +42145,165 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", + "ofType": null }, "isDeprecated": false, "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": "type", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateWebhook", - "description": "associate some state with a webhook to help convergence etc", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "webhook", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "id", + "description": "The ID of this CommitIssueRelationship", + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationshipCommit", + "description": null, + "fields": [ + { + "name": "owner", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "addWebhookTag", - "description": "add (or overwrite) a tag on a webhook", + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CommitIssueRelationshipIssue", + "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": "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": "Deployment", + "description": null, + "fields": [ + { + "name": "commit", + "description": null, "args": [ { - "name": "id", - "description": "", + "name": "sha", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -40029,10 +42314,10 @@ "defaultValue": null }, { - "name": "value", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -40044,40 +42329,142 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "DeploymentCommit", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setWebhookTags", - "description": "", + "name": "environment", + "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 + }, + { + "name": "id", + "description": "The ID of this Deployment", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeploymentCommit", + "description": null, + "fields": [ + { + "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 + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "IssueRelationship", + "description": null, + "fields": [ + { + "name": "relationshipId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, "args": [ { - "name": "id", - "description": "", + "name": "issue", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -40088,10 +42475,10 @@ "defaultValue": null }, { - "name": "value", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -40103,57 +42490,34 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Webhook", - "ofType": null - } + "kind": "OBJECT", + "name": "IssueRelationshipIssue", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "removeChatTeam", - "description": "Removes a ChatTeam and associated nodes from the graph", - "args": [ - { - "name": "chatTeamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "state", + "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": "createResourceUser", - "description": "### Users ####", + "name": "target", + "description": null, "args": [ { - "name": "login", - "description": "", + "name": "issue", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", @@ -40164,28 +42528,28 @@ "defaultValue": null }, { - "name": "resourceProviderId", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "resourceUserType", - "description": "", + "name": "repo", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ResourceUserType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -40193,613 +42557,424 @@ } ], "type": { - "kind": "INTERFACE", - "name": "ResourceUser", + "kind": "OBJECT", + "name": "IssueRelationshipIssue", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createKubernetesClusterProvider", - "description": "### Kube ####", - "args": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "type", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setChatUserPreference", - "description": "Set the value of a user preference.", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "chatUserId", - "description": "The id of user", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": "The ID of this IssueRelationship", + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UserPreference", - "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": "setPersonPreference", - "description": "Set the value of a person preference. Returns what was set", - "args": [ - { - "name": "personId", - "description": "The ID of the person", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "issue", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PersonPreference", - "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", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "The value of the preference", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "owner", + "description": null, + "args": [], "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", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "The name of the channel to create", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "repo", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "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": "addBotToSlackChannel", - "description": "Ask the bot to join a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "identifier", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "linkSlackChannelToRepo", - "description": "Link a channel to a repo", + "name": "repo", + "description": null, "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 link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelName", - "description": "The name of the channel to link. Optional.", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "The name of the repo to link", + "name": "name", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { "name": "owner", - "description": "The owner of the repo to link", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { "name": "providerId", - "description": "The provider id of the repo to link", + "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": "SlackChannel", + "name": "SdmBuildIdentifierRepository", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inviteUserToSlackChannel", - "description": "Ask the bot to invite a user to join a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel to join", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "The id of the user to invite", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "id", + "description": "The ID of this SdmBuildIdentifier", + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmBuildIdentifierRepository", + "description": null, + "fields": [ { - "name": "kickUserFromSlackChannel", - "description": "Ask the bot to kick a user from a chat channel", - "args": [ - { - "name": "chatTeamId", - "description": "The ID of the chat team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": "The id of the channel", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userId", - "description": "The id of the user", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "name", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "SlackChannel", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unlinkSlackChannelFromRepo", - "description": "Unlink a channel from a repo", - "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 link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "repo", - "description": "The name of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "The owner of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "The provider id of the repo to link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "owner", + "description": null, + "args": [], "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", - "args": [ - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "providerId", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "OwnerLogin", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SdmDeployState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "requested", + "description": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "setRepoLogin", - "description": "set a GitHub login to be used for this Repository", - "args": [ - { - "name": "repo", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "owner", - "description": "The owner name for the Organization/Team", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "providerId", - "description": "The id of the Git provider for this Owner", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "login", - "description": "The login that should be used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "disabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SdmDeployEnablement", + "description": null, + "fields": [ + { + "name": "owner", + "description": null, + "args": [], "type": { - "kind": "OBJECT", - "name": "RepoLogin", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "setTeamProperties", - "description": "Set a team's properties", + "name": "providerId", + "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": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this SdmDeployEnablement", + "args": [], + "type": { + "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, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "repo", + "description": null, "args": [ { "name": "name", - "description": "The display name of the team", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "description", - "description": "The description of the team", + "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": "iconUrl", - "description": "URL to a teams icon", + "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": "OBJECT", - "name": "Team", + "name": "SdmVersionRepository", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sha", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this SdmVersion", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -40812,579 +42987,606 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "DockerRegistryProviderInput", - "description": "TODO - remove this I think...", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmVersionRepository", + "description": null, + "fields": [ { "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "username", - "description": "", + "name": "owner", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", - "description": "", + "name": "providerId", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmGoalSetBadge", + "description": null, + "fields": [ { - "name": "orgs", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_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": "repos", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SCMResourceProviderRepoInput", + "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 } - }, - "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": "OBJECT", + "name": "SdmGoalSetBadgeRepository", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "repo", - "description": "", + "name": "sdm", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceProviderStateInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "state", - "description": "", + "name": "token", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ResourceProviderStateName", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "name": "id", + "description": "The ID of this SdmGoalSetBadge", + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "SCMProviderStateInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "SdmGoalSetBadgeRepository", + "description": null, + "fields": [ { - "name": "state", - "description": "", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SCMProviderStateName", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "error", - "description": "", + "name": "owner", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "SCMProviderStateName", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "SdmPreference", + "description": null, + "fields": [ { - "name": "converged", - "description": "", + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unconverged", - "description": "", + "name": "ttl", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "misconfigured", - "description": "", + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "unauthorized", - "description": "", + "name": "id", + "description": "The ID of this SdmPreference", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "CredentialInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "type", - "description": "", + "kind": "OBJECT", + "name": "SdmRepoProvenance", + "description": null, + "fields": [ + { + "name": "provenance", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CredentialType", - "ofType": null - } + "kind": "OBJECT", + "name": "SdmProvenance", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "oauth", - "description": "", + "name": "repo", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], "type": { - "kind": "INPUT_OBJECT", - "name": "OAuthInput", + "kind": "OBJECT", + "name": "SdmRepository", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "password", - "description": "", + "name": "id", + "description": "The ID of this SdmRepoProvenance", + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PasswordInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "CredentialType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "kind": "OBJECT", + "name": "PolicyLog", + "description": null, + "fields": [ { - "name": "OAuthToken", - "description": "", + "name": "apply", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ApplyPolicyLog", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Password", - "description": "", + "name": "manage", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ManageTargetPolicyLog", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OAuthInput", - "description": "", - "fields": null, - "inputFields": [ + }, { - "name": "secret", - "description": "", + "name": "name", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribe", + "description": null, + "args": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } + ], + "type": { + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "scopes", - "description": "", + "name": "ts", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PasswordInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "secret", - "description": "", + "name": "type", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this PolicyLog", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "WebhookInput", - "description": "", - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "ApplyPolicyLog", + "description": null, + "fields": [ { - "name": "name", - "description": "", + "name": "_prId", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "resourceProviderId", - "description": "", + "name": "_sha", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "authType", - "description": "", + "name": "branch", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "WebhookAuthType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "hmacSha1", - "description": "", + "name": "commit", + "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "HmacSha1AuthInput", + "kind": "OBJECT", + "name": "Commit", "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "tags", - "description": "", + "name": "message", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TagInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "state", - "description": "", + "name": "pullRequest", + "description": null, + "args": [], "type": { - "kind": "ENUM", - "name": "WebhookState", + "kind": "OBJECT", + "name": "PullRequest", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HmacSha1AuthInput", - "description": "", - "fields": null, - "inputFields": [ + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "secret", - "description": "shared secret", + "name": "state", + "description": null, + "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "ApplyPolicyState", + "ofType": null }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null }, { - "name": "header", - "description": "http header in which to find the hash", + "name": "targetSha", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TagInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "ENUM", - "name": "ResourceUserType", - "description": "", + "name": "ApplyPolicyState", + "description": null, "fields": null, "inputFields": null, "interfaces": null, "enumValues": [ { - "name": "SCMId", - "description": "", + "name": "success", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "GenericResourceUser", - "description": "", + "name": "no_change", + "description": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SystemAccount", - "description": "", + "name": "failure", + "description": null, "isDeprecated": false, "deprecationReason": null } @@ -41393,12 +43595,24 @@ }, { "kind": "OBJECT", - "name": "SlackChannel", - "description": "A slack channel", + "name": "ManageTargetPolicyLog", + "description": null, "fields": [ { - "name": "chatTeamId", - "description": "The id of the chat team", + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ManageTargetPolicyAction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41409,8 +43623,8 @@ "deprecationReason": null }, { - "name": "name", - "description": "The name of the channel", + "name": "reason", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41421,31 +43635,20 @@ "deprecationReason": null }, { - "name": "id", - "description": "The id of the channel", + "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": "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", + "name": "streamName", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41456,8 +43659,8 @@ "deprecationReason": null }, { - "name": "providerId", - "description": "The id of the git provider for this Owner", + "name": "targetSha", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41468,8 +43671,8 @@ "deprecationReason": null }, { - "name": "login", - "description": "The login that should be used", + "name": "targetValue", + "description": null, "args": [], "type": { "kind": "SCALAR", @@ -41486,71 +43689,13412 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "RepoLogin", - "description": "a GitHub Owner (like an Org) can set a login to be used for background tasks", - "fields": [ + "kind": "ENUM", + "name": "ManageTargetPolicyAction", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "unset", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "set", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ManageSubscriptionPolicyLog", + "description": null, + "fields": [ + { + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "author", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "reason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "repo", - "description": "The repository name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "streamId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "streamName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetSha", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ignore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unignore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unsubscribe", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this PolicyTargetStream", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PolicyTarget", + "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": "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": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "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, + "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", + "description": null, + "args": [ + { + "name": "login", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardCollaborator", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comments", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardBody", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "correlations", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardCorrelation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "events", + "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 + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post", + "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provenance", + "description": null, + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "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", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "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, + "deprecationReason": null + }, + { + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ttl", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "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 Card", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardActionGroup", + "description": null, + "fields": [ + { + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardAction", + "ofType": null + } + }, + "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": [ + { + "name": "command", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "confirm", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CardActionConfirmation", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionParameterOptionGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterOptions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionParameterOption", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardActionParameter", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "description": null, + "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": "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": [ + { + "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": "CardActionParameterOption", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardActionParameterOption", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardActionParameter", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CardBody", + "description": null, + "fields": [ + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hint", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "CardCollaborator", + "description": null, + "fields": [ + { + "name": "avatar", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "link", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "login", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "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": "icon", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "link", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "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": "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 + }, + { + "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": "CorrelationBody", + "description": null, + "fields": [ + { + "name": "icon", + "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 + } + ], + "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": "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": { + "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": "CardSdmGoalSet", + "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": "duration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": 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": "goals", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CardSdmGoal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "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": "CardSdmGoal", + "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": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "environment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "link", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logLink", + "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": "state", + "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": "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": "login", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reaction", + "description": null, + "args": [], + "type": { + "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": "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": "slug", + "description": null, + "args": [], + "type": { + "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": "icon", + "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 + } + ], + "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": "NotificationAction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "body", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "correlationId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "post", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "recipient", + "description": null, + "args": [ + { + "name": "address", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "NotificationRecipient", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ttl", + "description": null, + "args": [], + "type": { + "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": "NotificationActionParameterOptionGroup", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameterOptions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameterOption", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parameters", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NotificationActionParameter", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "registration", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "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": "AtomistLog", + "description": "Atomist log messages", + "fields": [ + { + "name": "timestamp", + "description": "Status timestamp", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "team_id", + "description": "Team ID for which log message is produced", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "level", + "description": "Log message level: debug, info, warn, error, fatal", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": "Log message", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "category", + "description": "Grouping, namespace etc.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "correlation_context", + "description": "Atomist log correlation context", + "args": [ + { + "name": "correlation_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistLogCorrelationContext", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": "The ID of this AtomistLog", + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistLogCorrelationContext", + "description": "Atomist log correlation context", + "fields": [ + { + "name": "correlation_id", + "description": "Correlation ID", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "automation", + "description": "Automation for which log message is produced", + "args": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistLogAutomation", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AtomistLogAutomation", + "description": "Automation for which log message is produced", + "fields": [ + { + "name": "name", + "description": "Automation name", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": "Automation description", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "setTeamConfiguration", + "description": "# Team/Workspace configuration ##", + "args": [ + { + "name": "namespace", + "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": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ttlSecs", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "ofType": null + } + }, + "isDeprecated": false, + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "TeamConfiguration", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistRegistration", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "AtomistRegistration", + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DockerRegistryProvider", + "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 + } + ], + "type": { + "kind": "OBJECT", + "name": "KubernetesClusterProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createBinaryRepositoryProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BinaryRepositoryType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "BinaryRepositoryProvider", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGHEAppResourceProvider", + "description": "", + "args": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authProviderId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apiUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "gitUrl", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "private", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "applicationId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "applicationName", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createGitHubResourceProvider", + "description": "Creates SCMProvider for github.com with a bunch of defaults", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SCMProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setResourceProviderState", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerState", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceProviderStateInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setSCMProviderState", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerState", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "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": "providerId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceUserId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "credential", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CredentialInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkCredentialToResourceProvider", + "description": "", + "args": [ + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "credentialId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkGitHubAppInstallation", + "description": "Links a GitHubAppInstallation to the provider as an Org", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppInstallation", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "disconnectGitHubAppOrg", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOrg", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteRepo", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "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": "featureName", + "description": "", + "type": { + "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", + "ofType": null + } + }, + "isDeprecated": false, + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "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 + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateWebhook", + "description": "associate some state with a webhook to help convergence etc", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "webhook", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addWebhookTag", + "description": "add (or overwrite) a tag on a webhook", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Webhook", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setWebhookTags", + "description": "", + "args": [ + { + "name": "id", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "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", + "description": "", + "type": { + "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", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createResourceUser", + "description": "### Users ####", + "args": [ + { + "name": "login", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceUserType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceUserType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkResourceUser", + "description": "", + "args": [ + { + "name": "resourceUserId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "personId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "INTERFACE", + "name": "ResourceUser", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestSCMOrgs", + "description": "### RCCA SCM Ingestion Mutations ####", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmOrgsInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMOrgsInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Org", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestSCMRepos", + "description": "", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmReposInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMReposInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Repo", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestSCMCommit", + "description": "", + "args": [ + { + "name": "scmProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scmCommitInput", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMCommitInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteFingerprints", + "description": "Delete all fingerprints for this team matching supplied query", + "args": [ + { + "name": "branchId", + "description": "Restrict to this particular branch in repo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Restrict to this particular name within type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "Restrict to this particular repo", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": "Restrict to this particular type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setCommitFingerprints", + "description": "Set the fingerprints of a commit", + "args": [ + { + "name": "add", + "description": "List of new fingerprints added by this commit", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FingerprintInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "branchId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "commitSha", + "description": "The sha of the the commit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isDefaultBranch", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "isHeadCommit", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repoId", + "description": "Id of the repo in the graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "The type of this fingerprint e.g. package.json-deps", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setFingerprintTarget", + "description": "", + "args": [ + { + "name": "target", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FingerprintTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FingerprintTarget", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addAtmJobTasks", + "description": "Add tasks to existing job, provided the job is in a preparing state.", + "args": [ + { + "name": "jobId", + "description": "The id of the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobTasks", + "description": "The tasks for the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createAtmJob", + "description": "Create a new AtmJob", + "args": [ + { + "name": "jobInput", + "description": "The AtmJobInput for the AtmJob you are creating", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resumeAtmJob", + "description": "Re-trigger tasks for a job that have not completed", + "args": [ + { + "name": "jobId", + "description": "The id of the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setAtmJobTaskState", + "description": "Set the state on a AtmJobTask", + "args": [ + { + "name": "id", + "description": "The id of the AtmJobTask to set the state of", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobTaskState", + "description": "The state to set", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskStateInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "AtmJobTask", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkSlackChannelToRepo", + "description": "", + "args": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "channelName", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChannelLinked", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unlinkSlackChannelFromRepo", + "description": "", + "args": [ + { + "name": "channelId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "chatTeamId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ChannelLinked", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomCommitIssueRelationship", + "description": "Auto-generated ingestion mutation for CommitIssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of CommitIssueRelationship to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomDeployment", + "description": "Auto-generated ingestion mutation for Deployment", + "args": [ + { + "name": "value", + "description": "The instance of Deployment to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomIssueRelationship", + "description": "Auto-generated ingestion mutation for IssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of IssueRelationship to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoal", + "description": "Auto-generated ingestion mutation for SdmGoal", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoal to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalSet", + "description": "Auto-generated ingestion mutation for SdmGoalSet", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSet to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalDisplay", + "description": "Auto-generated ingestion mutation for SdmGoalDisplay", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalDisplay to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmBuildIdentifier", + "description": "Auto-generated ingestion mutation for SdmBuildIdentifier", + "args": [ + { + "name": "value", + "description": "The instance of SdmBuildIdentifier to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmDeployEnablement", + "description": "Auto-generated ingestion mutation for SdmDeployEnablement", + "args": [ + { + "name": "value", + "description": "The instance of SdmDeployEnablement to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmVersion", + "description": "Auto-generated ingestion mutation for SdmVersion", + "args": [ + { + "name": "value", + "description": "The instance of SdmVersion to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmGoalSetBadge", + "description": "Auto-generated ingestion mutation for SdmGoalSetBadge", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSetBadge to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmPreference", + "description": "Auto-generated ingestion mutation for SdmPreference", + "args": [ + { + "name": "value", + "description": "The instance of SdmPreference to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomSdmRepoProvenance", + "description": "Auto-generated ingestion mutation for SdmRepoProvenance", + "args": [ + { + "name": "value", + "description": "The instance of SdmRepoProvenance to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyLog", + "description": "Auto-generated ingestion mutation for PolicyLog", + "args": [ + { + "name": "value", + "description": "The instance of PolicyLog to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyCompliance", + "description": "Auto-generated ingestion mutation for PolicyCompliance", + "args": [ + { + "name": "value", + "description": "The instance of PolicyCompliance to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyTargetStream", + "description": "Auto-generated ingestion mutation for PolicyTargetStream", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTargetStream to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomPolicyTarget", + "description": "Auto-generated ingestion mutation for PolicyTarget", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTarget to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomCard", + "description": "Auto-generated ingestion mutation for Card", + "args": [ + { + "name": "value", + "description": "The instance of Card to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomNotification", + "description": "Auto-generated ingestion mutation for Notification", + "args": [ + { + "name": "value", + "description": "The instance of Notification to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomAspectRegistration", + "description": "Auto-generated ingestion mutation for AspectRegistration", + "args": [ + { + "name": "value", + "description": "The instance of AspectRegistration to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ingestCustomAtomistLog", + "description": "Auto-generated ingestion mutation for AtomistLog", + "args": [ + { + "name": "value", + "description": "The instance of AtomistLog to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCommitIssueRelationship", + "description": "Auto-generated deletion mutation for CommitIssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of CommitIssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomDeployment", + "description": "Auto-generated deletion mutation for Deployment", + "args": [ + { + "name": "value", + "description": "The instance of Deployment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomIssueRelationship", + "description": "Auto-generated deletion mutation for IssueRelationship", + "args": [ + { + "name": "value", + "description": "The instance of IssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoal", + "description": "Auto-generated deletion mutation for SdmGoal", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoal to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSet", + "description": "Auto-generated deletion mutation for SdmGoalSet", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSet to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalDisplay", + "description": "Auto-generated deletion mutation for SdmGoalDisplay", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalDisplay to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmBuildIdentifier", + "description": "Auto-generated deletion mutation for SdmBuildIdentifier", + "args": [ + { + "name": "value", + "description": "The instance of SdmBuildIdentifier to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmDeployEnablement", + "description": "Auto-generated deletion mutation for SdmDeployEnablement", + "args": [ + { + "name": "value", + "description": "The instance of SdmDeployEnablement to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmVersion", + "description": "Auto-generated deletion mutation for SdmVersion", + "args": [ + { + "name": "value", + "description": "The instance of SdmVersion to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetBadge", + "description": "Auto-generated deletion mutation for SdmGoalSetBadge", + "args": [ + { + "name": "value", + "description": "The instance of SdmGoalSetBadge to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmPreference", + "description": "Auto-generated deletion mutation for SdmPreference", + "args": [ + { + "name": "value", + "description": "The instance of SdmPreference to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmRepoProvenance", + "description": "Auto-generated deletion mutation for SdmRepoProvenance", + "args": [ + { + "name": "value", + "description": "The instance of SdmRepoProvenance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyLog", + "description": "Auto-generated deletion mutation for PolicyLog", + "args": [ + { + "name": "value", + "description": "The instance of PolicyLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyCompliance", + "description": "Auto-generated deletion mutation for PolicyCompliance", + "args": [ + { + "name": "value", + "description": "The instance of PolicyCompliance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetStream", + "description": "Auto-generated deletion mutation for PolicyTargetStream", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTargetStream to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTarget", + "description": "Auto-generated deletion mutation for PolicyTarget", + "args": [ + { + "name": "value", + "description": "The instance of PolicyTarget to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCard", + "description": "Auto-generated deletion mutation for Card", + "args": [ + { + "name": "value", + "description": "The instance of Card to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomNotification", + "description": "Auto-generated deletion mutation for Notification", + "args": [ + { + "name": "value", + "description": "The instance of Notification to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAspectRegistration", + "description": "Auto-generated deletion mutation for AspectRegistration", + "args": [ + { + "name": "value", + "description": "The instance of AspectRegistration to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAspectRegistrationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAtomistLog", + "description": "Auto-generated deletion mutation for AtomistLog", + "args": [ + { + "name": "value", + "description": "The instance of AtomistLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCommitIssueRelationshipById", + "description": "Auto-generated delete-by-id mutation for CommitIssueRelationship", + "args": [ + { + "name": "id", + "description": "The id of the CommitIssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomDeploymentById", + "description": "Auto-generated delete-by-id mutation for Deployment", + "args": [ + { + "name": "id", + "description": "The id of the Deployment to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomIssueRelationshipById", + "description": "Auto-generated delete-by-id mutation for IssueRelationship", + "args": [ + { + "name": "id", + "description": "The id of the IssueRelationship to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalById", + "description": "Auto-generated delete-by-id mutation for SdmGoal", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoal to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetById", + "description": "Auto-generated delete-by-id mutation for SdmGoalSet", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalSet to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalDisplayById", + "description": "Auto-generated delete-by-id mutation for SdmGoalDisplay", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalDisplay to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmBuildIdentifierById", + "description": "Auto-generated delete-by-id mutation for SdmBuildIdentifier", + "args": [ + { + "name": "id", + "description": "The id of the SdmBuildIdentifier to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmDeployEnablementById", + "description": "Auto-generated delete-by-id mutation for SdmDeployEnablement", + "args": [ + { + "name": "id", + "description": "The id of the SdmDeployEnablement to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmVersionById", + "description": "Auto-generated delete-by-id mutation for SdmVersion", + "args": [ + { + "name": "id", + "description": "The id of the SdmVersion to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmGoalSetBadgeById", + "description": "Auto-generated delete-by-id mutation for SdmGoalSetBadge", + "args": [ + { + "name": "id", + "description": "The id of the SdmGoalSetBadge to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmPreferenceById", + "description": "Auto-generated delete-by-id mutation for SdmPreference", + "args": [ + { + "name": "id", + "description": "The id of the SdmPreference to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomSdmRepoProvenanceById", + "description": "Auto-generated delete-by-id mutation for SdmRepoProvenance", + "args": [ + { + "name": "id", + "description": "The id of the SdmRepoProvenance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyLogById", + "description": "Auto-generated delete-by-id mutation for PolicyLog", + "args": [ + { + "name": "id", + "description": "The id of the PolicyLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyComplianceById", + "description": "Auto-generated delete-by-id mutation for PolicyCompliance", + "args": [ + { + "name": "id", + "description": "The id of the PolicyCompliance to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetStreamById", + "description": "Auto-generated delete-by-id mutation for PolicyTargetStream", + "args": [ + { + "name": "id", + "description": "The id of the PolicyTargetStream to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomPolicyTargetById", + "description": "Auto-generated delete-by-id mutation for PolicyTarget", + "args": [ + { + "name": "id", + "description": "The id of the PolicyTarget to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomCardById", + "description": "Auto-generated delete-by-id mutation for Card", + "args": [ + { + "name": "id", + "description": "The id of the Card to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomNotificationById", + "description": "Auto-generated delete-by-id mutation for Notification", + "args": [ + { + "name": "id", + "description": "The id of the Notification to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAspectRegistrationById", + "description": "Auto-generated delete-by-id mutation for AspectRegistration", + "args": [ + { + "name": "id", + "description": "The id of the AspectRegistration to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomAtomistLogById", + "description": "Auto-generated delete-by-id mutation for AtomistLog", + "args": [ + { + "name": "id", + "description": "The id of the AtomistLog to delete", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setChatUserPreference", + "description": "Set the value of a user preference.", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "chatUserId", + "description": "The id of user", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": "The value of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setChatTeamPreference", + "description": "Set the value of a chat team preference. Returns what was set", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": "The value of the preference", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamPreference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSlackChannel", + "description": "Create a slack channel in the current team", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the channel to create", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addBotToSlackChannel", + "description": "Ask the bot to join a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel to join", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inviteUserToSlackChannel", + "description": "Ask the bot to invite a user to join a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel to join", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The id of the user to invite", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "kickUserFromSlackChannel", + "description": "Ask the bot to kick a user from a chat channel", + "args": [ + { + "name": "chatTeamId", + "description": "The ID of the chat team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": "The id of the channel", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": "The id of the user", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SlackChannel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setOwnerLogin", + "description": "set a GitHub login to be used for resources owned by an Org", + "args": [ + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "The id of the Git provider for this Owner", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": "The login that should be used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OwnerLogin", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setRepoLogin", + "description": "set a GitHub login to be used for this Repository", + "args": [ + { + "name": "repo", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "The owner name for the Organization/Team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": "The id of the Git provider for this Owner", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": "The login that should be used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "RepoLogin", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setTeamProperties", + "description": "Set a team's properties", + "args": [ + { + "name": "name", + "description": "The display name of the team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "The description of the team", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "iconUrl", + "description": "URL to a teams icon", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgs", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "repos", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMResourceProviderRepoInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceProviderStateInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ResourceProviderStateName", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "error", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMProviderStateInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "state", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SCMProviderStateName", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "error", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SCMProviderStateName", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "converged", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unconverged", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "misconfigured", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unauthorized", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CredentialInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CredentialType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "oauth", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "OAuthInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "password", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "PasswordInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CredentialType", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "OAuthToken", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Password", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OAuthInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "scopes", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PasswordInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WebhookInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceProviderId", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "WebhookAuthType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "hmacSha1", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "HmacSha1AuthInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tags", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TagInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": "", + "type": { + "kind": "ENUM", + "name": "WebhookState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HmacSha1AuthInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "secret", + "description": "shared secret", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "header", + "description": "http header in which to find the hash", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TagInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "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", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMOrgInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMOrgInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ownerType", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OwnerType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMReposInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "orgId", + "description": "The id of the org as represented in the Atomist graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repos", + "description": "The list of repos to ingest", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SCMRepoInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMRepoInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "repoId", + "description": "The the id of the repo as provided by the SCM provider not the Atomist graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The http url of the repo in the SCM provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the repo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "defaultBranch", + "description": "The default branch of the repo (master if unknown)", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMCommitInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "repoId", + "description": "The id of the repo as it appears in the graph", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "The sha of the commit", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The email address of the commit", + "type": { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "The commit message", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "url", + "description": "The http url of the commit in the SCM provider", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": "The commit timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "branchName", + "description": "The name of the branch this commit is being ingested on", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "author", + "description": "The author of the commit - optional but helpful if available", + "type": { + "kind": "INPUT_OBJECT", + "name": "SCMAuthorInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "address", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SCMAuthorInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "login", + "description": "The login of the commit author in the SCM provider", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "email", + "description": "The authors email address", + "type": { + "kind": "INPUT_OBJECT", + "name": "EmailInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The name of the author", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintInput", + "description": "For submitting new RepoFingerprints", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Optional data, such as dependency version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": "Optional human readable string for this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayType", + "description": "Optional human readable string for the type (Aspect name) of this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": "Optional human readable string for the value of this fingerprint", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "The unique name for this fingerprint, such as the name of a dependency", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "The hash of this fingerprint - forms ID of a SourceFingerprint", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintTargetInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sha", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": "", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "description": "Input object for creation of AtmJobTask", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Sets additional information about this AtmJobTask", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Sets the name for this AtmJobTask", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobInput", + "description": "The input object for the creation of a AtmJob", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": "Used to store additional information about this AtmJob", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": "A description for this job.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "initialState", + "description": "The initial state for the job. The default is running. Another option is preparing.", + "type": { + "kind": "ENUM", + "name": "AtmInitialJobState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "jobTasks", + "description": "The tasks for the job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "maxRunningTasks", + "description": "The maximum number of running (in-flight) tasks. By default, all tasks will be in-flight from the time the job is created.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": "Sets the name for this job", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": "The owner of this job. Clients may use this in a subscription to avoid all clients subscribing to all tasks in a team.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AtmInitialJobState", + "description": "The initial state of an AtmJob", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "preparing", + "description": "", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "running", + "description": "", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AtmJobTaskStateInput", + "description": "Input object for setting the state of a AtmJobTask", + "fields": null, + "inputFields": [ + { + "name": "message", + "description": "Sets additional information about the state of this AtmJobTask", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": "Sets the AtmJobTaskState of this AtmJobState", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AtmJobTaskState", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "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": "CustomCommitIssueRelationshipCommitInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "issue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "CommitIssueRelationshipType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipCommitInput", + "description": "Auto generated input for type CommitIssueRelationshipCommit", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCommitIssueRelationshipIssueInput", + "description": "Auto generated input for type CommitIssueRelationshipIssue", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentInput", + "description": "Auto generated input for type Deployment", + "fields": null, + "inputFields": [ + { + "name": "commit", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentCommitInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomDeploymentCommitInput", + "description": "Auto generated input for type DeploymentCommit", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipInput", + "description": "Auto generated input for type IssueRelationship", + "fields": null, + "inputFields": [ + { + "name": "relationshipId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomIssueRelationshipIssueInput", + "description": "Auto generated input for type IssueRelationshipIssue", + "fields": null, + "inputFields": [ + { + "name": "issue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalInput", + "description": "Auto generated input for type SdmGoal", + "fields": null, + "inputFields": [ + { + "name": "approval", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "approvalRequired", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "descriptions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDescriptionsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "error", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalUrls", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmExternalUrlInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fulfillment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalFulfillmentInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preApproval", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preApprovalRequired", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "preConditions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmConditionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "retryFeasible", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "signature", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "description": "Auto generated input for type SdmProvenance", + "fields": null, + "inputFields": [ + { + "name": "channelId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "correlationId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDescriptionsInput", + "description": "Auto generated input for type SdmGoalDescriptions", + "fields": null, + "inputFields": [ + { + "name": "canceled", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "completed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "failed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inProcess", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "planned", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "requested", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skipped", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stopped", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "waitingForApproval", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "waitingForPreApproval", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmExternalUrlInput", + "description": "Auto generated input for type SdmExternalUrl", + "fields": null, + "inputFields": [ + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalFulfillmentInput", + "description": "Auto generated input for type SdmGoalFulfillment", + "fields": null, + "inputFields": [ + { + "name": "method", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmConditionInput", + "description": "Auto generated input for type SdmCondition", + "fields": null, + "inputFields": [ + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "description": "Auto generated input for type SdmRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetInput", + "description": "Auto generated input for type SdmGoalSet", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goals", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalNameInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tags", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetTagInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalNameInput", + "description": "Auto generated input for type SdmGoalName", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uniqueName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetTagInput", + "description": "Auto generated input for type SdmGoalSetTag", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalDisplayInput", + "description": "Auto generated input for type SdmGoalDisplay", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierInput", + "description": "Auto generated input for type SdmBuildIdentifier", + "fields": null, + "inputFields": [ + { + "name": "identifier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmBuildIdentifierRepositoryInput", + "description": "Auto generated input for type SdmBuildIdentifierRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmDeployEnablementInput", + "description": "Auto generated input for type SdmDeployEnablement", + "fields": null, + "inputFields": [ + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "SdmDeployState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionInput", + "description": "Auto generated input for type SdmVersion", + "fields": null, + "inputFields": [ + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmVersionRepositoryInput", + "description": "Auto generated input for type SdmVersionRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeInput", + "description": "Auto generated input for type SdmGoalSetBadge", + "fields": null, + "inputFields": [ + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sdm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmGoalSetBadgeRepositoryInput", + "description": "Auto generated input for type SdmGoalSetBadgeRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmPreferenceInput", + "description": "Auto generated input for type SdmPreference", + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepoProvenanceInput", + "description": "Auto generated input for type SdmRepoProvenance", + "fields": null, + "inputFields": [ + { + "name": "provenance", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmProvenanceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSdmRepositoryInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyLogInput", + "description": "Auto generated input for type PolicyLog", + "fields": null, + "inputFields": [ + { + "name": "apply", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomApplyPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manage", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomManageTargetPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subscribe", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomManageSubscriptionPolicyLogInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomApplyPolicyLogInput", + "description": "Auto generated input for type ApplyPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "_prId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "ApplyPolicyState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomManageTargetPolicyLogInput", + "description": "Auto generated input for type ManageTargetPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "action", + "description": null, + "type": { + "kind": "ENUM", + "name": "ManageTargetPolicyAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "author", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomManageSubscriptionPolicyLogInput", + "description": "Auto generated input for type ManageSubscriptionPolicyLog", + "fields": null, + "inputFields": [ + { + "name": "action", + "description": null, + "type": { + "kind": "ENUM", + "name": "ManageSubscriptionPolicyAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "author", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reason", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streamName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetSha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targetValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceInput", + "description": "Auto generated input for type PolicyCompliance", + "fields": null, + "inputFields": [ + { + "name": "_branch", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_repo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aspects", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceAspectInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "differences", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "PolicyCompliaceState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "targets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceAspectInput", + "description": "Auto generated input for type PolicyComplianceAspect", + "fields": null, + "inputFields": [ + { + "name": "displayType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "manageable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyComplianceFingerprintInput", + "description": "Auto generated input for type PolicyComplianceFingerprint", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetStreamInput", + "description": "Auto generated input for type PolicyTargetStream", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomPolicyTargetInput", + "description": "Auto generated input for type PolicyTarget", + "fields": null, + "inputFields": [ + { + "name": "data", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "displayValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sha", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streams", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardInput", + "description": "Auto generated input for type Card", + "fields": null, + "inputFields": [ + { + "name": "actionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "body", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "collaborators", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCollaboratorInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "comments", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "correlations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardCorrelationInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "events", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardEventInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "goalSets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalSetInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "post", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provenance", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardProvenanceInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "reactions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardReactionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "repository", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardRepositoryInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shortTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardTitleInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "description": "Auto generated input for type CardActionGroup", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "description": "Auto generated input for type CardAction", + "fields": null, + "inputFields": [ + { + "name": "command", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "confirm", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionConfirmationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameterOptions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionConfirmationInput", + "description": "Auto generated input for type CardActionConfirmation", + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dismiss", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ok", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionGroupInput", + "description": "Auto generated input for type CardActionParameterOptionGroup", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterOptionInput", + "description": "Auto generated input for type CardActionParameterOption", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionParameterInput", + "description": "Auto generated input for type CardActionParameter", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardBodyInput", + "description": "Auto generated input for type CardBody", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardCollaboratorInput", + "description": "Auto generated input for type CardCollaborator", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardCorrelationInput", + "description": "Auto generated input for type CardCorrelation", + "fields": null, + "inputFields": [ + { + "name": "body", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCorrelationBodyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shortTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCorrelationBodyInput", + "description": "Auto generated input for type CorrelationBody", + "fields": null, + "inputFields": [ + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardEventInput", + "description": "Auto generated input for type CardEvent", + "fields": null, + "inputFields": [ + { + "name": "actionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalSetInput", + "description": "Auto generated input for type CardSdmGoalSet", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "duration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSet", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goalSetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "goals", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardSdmGoalInput", + "description": "Auto generated input for type CardSdmGoal", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "environment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "link", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logLink", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardProvenanceInput", + "description": "Auto generated input for type CardProvenance", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardReactionInput", + "description": "Auto generated input for type CardReaction", + "fields": null, + "inputFields": [ + { + "name": "avatar", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "login", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardRepositoryInput", + "description": "Auto generated input for type CardRepository", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "owner", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomCardTitleInput", + "description": "Auto generated input for type CardTitle", + "fields": null, + "inputFields": [ + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationInput", + "description": "Auto generated input for type Notification", + "fields": null, + "inputFields": [ + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "body", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "correlationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "post", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recipient", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationRecipientInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ts", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ttl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionInput", + "description": "Auto generated input for type NotificationAction", + "fields": null, + "inputFields": [ + { + "name": "command", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parameterOptionGroups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionGroupInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameterOptions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "parameters", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "registration", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "role", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionGroupInput", + "description": "Auto generated input for type NotificationActionParameterOptionGroup", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "options", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterOptionInput", + "description": "Auto generated input for type NotificationActionParameterOption", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionParameterInput", + "description": "Auto generated input for type NotificationActionParameter", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomNotificationRecipientInput", + "description": "Auto generated input for type NotificationRecipient", + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "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": "INPUT_OBJECT", + "name": "CustomAtomistLogInput", + "description": "Auto generated input for type AtomistLog", + "fields": null, + "inputFields": [ + { + "name": "timestamp", + "description": "Status timestamp", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": "Team ID for which log message is produced", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "level", + "description": "Log message level: debug, info, warn, error, fatal", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "message", + "description": "Log message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "category", + "description": "Grouping, namespace etc.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "correlation_context", + "description": "Atomist log correlation context", + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogCorrelationContextInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogCorrelationContextInput", + "description": "Auto generated input for type AtomistLogCorrelationContext", + "fields": null, + "inputFields": [ + { + "name": "correlation_id", + "description": "Correlation ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "automation", + "description": "Automation for which log message is produced", + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogAutomationInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomAtomistLogAutomationInput", + "description": "Auto generated input for type AtomistLogAutomation", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": "Automation name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version", + "description": "Automation description", + "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": "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": "owner", - "description": "The owner name for the Organization/Team", - "args": [], + "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Commit", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "providerId", - "description": "The id of the git provider for this Owner", - "args": [], + "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": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Push", + "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": "SubscriptionType", - "description": "", - "fields": [ - { - "name": "Issue", + "name": "Build", "description": "", "args": [ { @@ -41563,12 +57107,22 @@ }, "defaultValue": null }, + { + "name": "buildId", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null }, "defaultValue": null @@ -41584,7 +57138,17 @@ "defaultValue": null }, { - "name": "title", + "name": "status", + "description": "", + "type": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "buildUrl", "description": "", "type": { "kind": "SCALAR", @@ -41594,7 +57158,7 @@ "defaultValue": null }, { - "name": "body", + "name": "compareUrl", "description": "", "type": { "kind": "SCALAR", @@ -41604,11 +57168,51 @@ "defaultValue": null }, { - "name": "state", + "name": "trigger", "description": "", "type": { "kind": "ENUM", - "name": "IssueState", + "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 @@ -41624,7 +57228,7 @@ "defaultValue": null }, { - "name": "action", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -41634,7 +57238,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "jobName", "description": "", "type": { "kind": "SCALAR", @@ -41644,7 +57248,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "jobId", "description": "", "type": { "kind": "SCALAR", @@ -41654,7 +57258,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -41677,6 +57281,20 @@ }, "defaultValue": null }, + { + "name": "buildIds", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "numbers", "description": "", @@ -41685,7 +57303,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } }, @@ -41706,7 +57324,21 @@ "defaultValue": null }, { - "name": "titles", + "name": "statuss", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BuildStatus", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "buildUrls", "description": "", "type": { "kind": "LIST", @@ -41720,7 +57352,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "compareUrls", "description": "", "type": { "kind": "LIST", @@ -41734,14 +57366,70 @@ "defaultValue": null }, { - "name": "states", + "name": "triggers", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "IssueState", + "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 } }, @@ -41762,7 +57450,7 @@ "defaultValue": null }, { - "name": "actions", + "name": "workflowIds", "description": "", "type": { "kind": "LIST", @@ -41776,7 +57464,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "jobNames", "description": "", "type": { "kind": "LIST", @@ -41790,7 +57478,7 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "jobIds", "description": "", "type": { "kind": "LIST", @@ -41804,7 +57492,7 @@ "defaultValue": null }, { - "name": "closedAts", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -41825,7 +57513,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_IssueOrdering", + "name": "_BuildOrdering", "ofType": null } }, @@ -41867,7 +57555,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Issue", + "name": "Build", "ofType": null } }, @@ -41875,31 +57563,31 @@ "deprecationReason": null }, { - "name": "Comment", + "name": "Pipeline", "description": "", "args": [ { - "name": "id", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "body", + "name": "pipelineId", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -41909,17 +57597,44 @@ "defaultValue": null }, { - "name": "createdAt", + "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": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "updatedAt", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -41927,9 +57642,36 @@ "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": "commentId", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -41939,17 +57681,44 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "jobId", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "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": "path", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -41959,7 +57728,7 @@ "defaultValue": null }, { - "name": "position", + "name": "workflowId", "description": "", "type": { "kind": "SCALAR", @@ -41969,7 +57738,7 @@ "defaultValue": null }, { - "name": "htmlUrl", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -41979,11 +57748,11 @@ "defaultValue": null }, { - "name": "commentType", + "name": "config", "description": "", "type": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -42003,7 +57772,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -42017,7 +57786,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "workflowIds", "description": "", "type": { "kind": "LIST", @@ -42031,7 +57800,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -42045,7 +57814,7 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "configs", "description": "", "type": { "kind": "LIST", @@ -42059,49 +57828,132 @@ "defaultValue": null }, { - "name": "commentIds", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_WorkflowOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "gitHubIds", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "paths", + "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": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "positions", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -42115,7 +57967,7 @@ "defaultValue": null }, { - "name": "htmlUrls", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -42129,14 +57981,14 @@ "defaultValue": null }, { - "name": "commentTypes", + "name": "remoteRepoHtmlUrls", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "CommentCommentType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -42150,7 +58002,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_CommentOrdering", + "name": "_BranchOrdering", "ofType": null } }, @@ -42192,7 +58044,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Comment", + "name": "Branch", "ofType": null } }, @@ -42200,7 +58052,7 @@ "deprecationReason": null }, { - "name": "Label", + "name": "DeletedBranch", "description": "", "args": [ { @@ -42224,17 +58076,7 @@ "defaultValue": null }, { - "name": "default", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "color", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -42272,21 +58114,7 @@ "defaultValue": null }, { - "name": "defaults", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "colors", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -42307,7 +58135,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_LabelOrdering", + "name": "_DeletedBranchOrdering", "ofType": null } }, @@ -42349,7 +58177,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Label", + "name": "DeletedBranch", "ofType": null } }, @@ -42357,7 +58185,7 @@ "deprecationReason": null }, { - "name": "Repo", + "name": "ChatId", "description": "", "args": [ { @@ -42371,7 +58199,7 @@ "defaultValue": null }, { - "name": "owner", + "name": "screenName", "description": "", "type": { "kind": "SCALAR", @@ -42381,7 +58209,7 @@ "defaultValue": null }, { - "name": "name", + "name": "userId", "description": "", "type": { "kind": "SCALAR", @@ -42391,37 +58219,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", @@ -42431,7 +58259,7 @@ "defaultValue": null }, { - "name": "gitHubId", + "name": "isAdmin", "description": "", "type": { "kind": "SCALAR", @@ -42441,7 +58269,7 @@ "defaultValue": null }, { - "name": "defaultBranch", + "name": "isBot", "description": "", "type": { "kind": "SCALAR", @@ -42451,35 +58279,31 @@ "defaultValue": null }, { - "name": "ids", + "name": "timezoneLabel", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "owners", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "names", + "name": "screenNames", "description": "", "type": { "kind": "LIST", @@ -42493,7 +58317,7 @@ "defaultValue": null }, { - "name": "repoIds", + "name": "userIds", "description": "", "type": { "kind": "LIST", @@ -42507,7 +58331,7 @@ "defaultValue": null }, { - "name": "gitHubIds", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -42521,7 +58345,7 @@ "defaultValue": null }, { - "name": "defaultBranchs", + "name": "timezoneLabels", "description": "", "type": { "kind": "LIST", @@ -42542,7 +58366,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_RepoOrdering", + "name": "_ChatIdOrdering", "ofType": null } }, @@ -42584,7 +58408,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Repo", + "name": "ChatId", "ofType": null } }, @@ -42592,21 +58416,21 @@ "deprecationReason": null }, { - "name": "Commit", + "name": "ChatChannel", "description": "", "args": [ { - "name": "sha", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "message", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -42616,7 +58440,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -42626,154 +58450,99 @@ "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", + "name": "normalizedName", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_CommitOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "channelId", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", + "name": "isDefault", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "botInvitedSelf", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "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", + "name": "archived", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "ids", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "defaultValue": null }, { - "name": "branch", + "name": "names", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "ids", + "name": "providers", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "timestamps", + "name": "normalizedNames", "description": "", "type": { "kind": "LIST", @@ -42787,7 +58556,7 @@ "defaultValue": null }, { - "name": "branchs", + "name": "channelIds", "description": "", "type": { "kind": "LIST", @@ -42808,7 +58577,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PushOrdering", + "name": "_ChatChannelOrdering", "ofType": null } }, @@ -42850,7 +58619,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Push", + "name": "ChatChannel", "ofType": null } }, @@ -42858,7 +58627,7 @@ "deprecationReason": null }, { - "name": "Build", + "name": "PullRequest", "description": "", "args": [ { @@ -42872,21 +58641,21 @@ "defaultValue": null }, { - "name": "buildId", + "name": "number", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null }, "defaultValue": null }, { - "name": "number", + "name": "prId", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -42902,17 +58671,17 @@ "defaultValue": null }, { - "name": "status", + "name": "body", "description": "", "type": { - "kind": "ENUM", - "name": "BuildStatus", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "buildUrl", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -42922,27 +58691,27 @@ "defaultValue": null }, { - "name": "compareUrl", + "name": "merged", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "trigger", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "provider", + "name": "baseBranchName", "description": "", "type": { "kind": "SCALAR", @@ -42952,17 +58721,17 @@ "defaultValue": null }, { - "name": "pullRequestNumber", + "name": "branchName", "description": "", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "startedAt", + "name": "title", "description": "", "type": { "kind": "SCALAR", @@ -42972,7 +58741,7 @@ "defaultValue": null }, { - "name": "finishedAt", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -42982,7 +58751,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "updatedAt", "description": "", "type": { "kind": "SCALAR", @@ -42992,7 +58761,7 @@ "defaultValue": null }, { - "name": "workflowId", + "name": "closedAt", "description": "", "type": { "kind": "SCALAR", @@ -43002,7 +58771,7 @@ "defaultValue": null }, { - "name": "jobName", + "name": "mergedAt", "description": "", "type": { "kind": "SCALAR", @@ -43012,21 +58781,21 @@ "defaultValue": null }, { - "name": "jobId", + "name": "mergeStatus", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "action", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null }, "defaultValue": null @@ -43046,28 +58815,28 @@ "defaultValue": null }, { - "name": "buildIds", + "name": "numbers", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } }, "defaultValue": null }, { - "name": "numbers", + "name": "prIds", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -43088,21 +58857,7 @@ "defaultValue": null }, { - "name": "statuss", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "BuildStatus", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "buildUrls", + "name": "bodys", "description": "", "type": { "kind": "LIST", @@ -43116,7 +58871,7 @@ "defaultValue": null }, { - "name": "compareUrls", + "name": "states", "description": "", "type": { "kind": "LIST", @@ -43130,21 +58885,21 @@ "defaultValue": null }, { - "name": "triggers", + "name": "timestamps", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "BuildTrigger", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "providers", + "name": "baseBranchNames", "description": "", "type": { "kind": "LIST", @@ -43158,21 +58913,21 @@ "defaultValue": null }, { - "name": "pullRequestNumbers", + "name": "branchNames", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "startedAts", + "name": "titles", "description": "", "type": { "kind": "LIST", @@ -43186,7 +58941,7 @@ "defaultValue": null }, { - "name": "finishedAts", + "name": "createdAts", "description": "", "type": { "kind": "LIST", @@ -43200,7 +58955,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "updatedAts", "description": "", "type": { "kind": "LIST", @@ -43214,7 +58969,7 @@ "defaultValue": null }, { - "name": "workflowIds", + "name": "closedAts", "description": "", "type": { "kind": "LIST", @@ -43228,7 +58983,7 @@ "defaultValue": null }, { - "name": "jobNames", + "name": "mergedAts", "description": "", "type": { "kind": "LIST", @@ -43242,28 +58997,28 @@ "defaultValue": null }, { - "name": "jobIds", + "name": "mergeStatuss", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "MergeStatus", "ofType": null } }, "defaultValue": null }, { - "name": "datas", + "name": "actions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PullRequestAction", "ofType": null } }, @@ -43277,7 +59032,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BuildOrdering", + "name": "_PullRequestOrdering", "ofType": null } }, @@ -43312,144 +59067,13 @@ "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", + "name": "filter", "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", + "kind": "INPUT_OBJECT", + "name": "_PullRequestFilter", "ofType": null }, "defaultValue": null @@ -43460,7 +59084,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Job", + "name": "PullRequest", "ofType": null } }, @@ -43468,7 +59092,7 @@ "deprecationReason": null }, { - "name": "Workflow", + "name": "Org", "description": "", "args": [ { @@ -43482,27 +59106,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "workflowId", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "provider", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -43512,11 +59116,11 @@ "defaultValue": null }, { - "name": "config", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -43536,35 +59140,7 @@ "defaultValue": null }, { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "workflowIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providers", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -43578,14 +59154,14 @@ "defaultValue": null }, { - "name": "configs", + "name": "ownerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null } }, @@ -43599,7 +59175,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_WorkflowOrdering", + "name": "_OrgOrdering", "ofType": null } }, @@ -43634,6 +59210,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_OrgFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -43641,7 +59227,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Workflow", + "name": "Org", "ofType": null } }, @@ -43649,7 +59235,7 @@ "deprecationReason": null }, { - "name": "Branch", + "name": "GitHubAppInstallation", "description": "", "args": [ { @@ -43663,17 +59249,7 @@ "defaultValue": null }, { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", + "name": "owner", "description": "", "type": { "kind": "SCALAR", @@ -43683,21 +59259,11 @@ "defaultValue": null }, { - "name": "isRemote", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "remoteRepoHtmlUrl", + "name": "ownerType", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "OwnerType", "ofType": null }, "defaultValue": null @@ -43717,35 +59283,7 @@ "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", + "name": "owners", "description": "", "type": { "kind": "LIST", @@ -43766,7 +59304,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_BranchOrdering", + "name": "_GitHubAppInstallationOrdering", "ofType": null } }, @@ -43808,7 +59346,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Branch", + "name": "GitHubAppInstallation", "ofType": null } }, @@ -43816,7 +59354,7 @@ "deprecationReason": null }, { - "name": "DeletedBranch", + "name": "SCMId", "description": "", "args": [ { @@ -43829,6 +59367,16 @@ }, "defaultValue": null }, + { + "name": "login", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "name", "description": "", @@ -43840,7 +59388,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "avatar", "description": "", "type": { "kind": "SCALAR", @@ -43850,14 +59398,14 @@ "defaultValue": null }, { - "name": "ids", + "name": "logins", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -43878,7 +59426,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "avatars", "description": "", "type": { "kind": "LIST", @@ -43899,7 +59447,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_DeletedBranchOrdering", + "name": "_SCMIdOrdering", "ofType": null } }, @@ -43941,7 +59489,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DeletedBranch", + "name": "SCMId", "ofType": null } }, @@ -43949,7 +59497,7 @@ "deprecationReason": null }, { - "name": "ChatId", + "name": "GitHubAppResourceUser", "description": "", "args": [ { @@ -43963,37 +59511,7 @@ "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", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -44003,99 +59521,98 @@ "defaultValue": null }, { - "name": "isOwner", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_GitHubAppResourceUserOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "isPrimaryOwner", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "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 - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GitHubAppResourceUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "GitHubId", + "description": "", + "args": [ { - "name": "timezoneLabel", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "screenNames", + "name": "login", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "userIds", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "providers", + "name": "logins", "description": "", "type": { "kind": "LIST", @@ -44109,7 +59626,7 @@ "defaultValue": null }, { - "name": "timezoneLabels", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -44130,7 +59647,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatIdOrdering", + "name": "_GitHubIdOrdering", "ofType": null } }, @@ -44172,7 +59689,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatId", + "name": "GitHubId", "ofType": null } }, @@ -44180,7 +59697,7 @@ "deprecationReason": null }, { - "name": "ChatChannel", + "name": "Tag", "description": "", "args": [ { @@ -44204,7 +59721,7 @@ "defaultValue": null }, { - "name": "provider", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -44214,7 +59731,7 @@ "defaultValue": null }, { - "name": "normalizedName", + "name": "ref", "description": "", "type": { "kind": "SCALAR", @@ -44224,7 +59741,7 @@ "defaultValue": null }, { - "name": "channelId", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -44233,36 +59750,6 @@ }, "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": "", @@ -44292,7 +59779,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -44306,7 +59793,7 @@ "defaultValue": null }, { - "name": "normalizedNames", + "name": "refs", "description": "", "type": { "kind": "LIST", @@ -44320,7 +59807,7 @@ "defaultValue": null }, { - "name": "channelIds", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -44341,7 +59828,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatChannelOrdering", + "name": "_TagOrdering", "ofType": null } }, @@ -44383,7 +59870,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ChatChannel", + "name": "Tag", "ofType": null } }, @@ -44391,39 +59878,9 @@ "deprecationReason": null }, { - "name": "PullRequest", + "name": "K8Pod", "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": "", @@ -44435,7 +59892,7 @@ "defaultValue": null }, { - "name": "body", + "name": "phase", "description": "", "type": { "kind": "SCALAR", @@ -44445,7 +59902,7 @@ "defaultValue": null }, { - "name": "state", + "name": "environment", "description": "", "type": { "kind": "SCALAR", @@ -44455,17 +59912,17 @@ "defaultValue": null }, { - "name": "merged", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "baseName", "description": "", "type": { "kind": "SCALAR", @@ -44475,7 +59932,7 @@ "defaultValue": null }, { - "name": "baseBranchName", + "name": "namespace", "description": "", "type": { "kind": "SCALAR", @@ -44485,7 +59942,7 @@ "defaultValue": null }, { - "name": "branchName", + "name": "statusJSON", "description": "", "type": { "kind": "SCALAR", @@ -44495,7 +59952,7 @@ "defaultValue": null }, { - "name": "title", + "name": "host", "description": "", "type": { "kind": "SCALAR", @@ -44505,7 +59962,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "state", "description": "", "type": { "kind": "SCALAR", @@ -44515,7 +59972,7 @@ "defaultValue": null }, { - "name": "updatedAt", + "name": "specsJSON", "description": "", "type": { "kind": "SCALAR", @@ -44525,7 +59982,7 @@ "defaultValue": null }, { - "name": "closedAt", + "name": "envJSON", "description": "", "type": { "kind": "SCALAR", @@ -44535,7 +59992,7 @@ "defaultValue": null }, { - "name": "mergedAt", + "name": "metadataJSON", "description": "", "type": { "kind": "SCALAR", @@ -44545,67 +60002,25 @@ "defaultValue": null }, { - "name": "mergeStatus", + "name": "containersCrashLoopBackOff", "description": "", "type": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "action", + "name": "resourceVersion", "description": "", "type": { - "kind": "ENUM", - "name": "PullRequestAction", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null }, - { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "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": "", @@ -44621,7 +60036,7 @@ "defaultValue": null }, { - "name": "bodys", + "name": "phases", "description": "", "type": { "kind": "LIST", @@ -44635,7 +60050,7 @@ "defaultValue": null }, { - "name": "states", + "name": "environments", "description": "", "type": { "kind": "LIST", @@ -44663,7 +60078,7 @@ "defaultValue": null }, { - "name": "baseBranchNames", + "name": "baseNames", "description": "", "type": { "kind": "LIST", @@ -44677,7 +60092,7 @@ "defaultValue": null }, { - "name": "branchNames", + "name": "namespaces", "description": "", "type": { "kind": "LIST", @@ -44691,7 +60106,7 @@ "defaultValue": null }, { - "name": "titles", + "name": "statusJSONs", "description": "", "type": { "kind": "LIST", @@ -44705,7 +60120,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "hosts", "description": "", "type": { "kind": "LIST", @@ -44719,7 +60134,7 @@ "defaultValue": null }, { - "name": "updatedAts", + "name": "states", "description": "", "type": { "kind": "LIST", @@ -44733,7 +60148,7 @@ "defaultValue": null }, { - "name": "closedAts", + "name": "specsJSONs", "description": "", "type": { "kind": "LIST", @@ -44747,7 +60162,7 @@ "defaultValue": null }, { - "name": "mergedAts", + "name": "envJSONs", "description": "", "type": { "kind": "LIST", @@ -44761,28 +60176,28 @@ "defaultValue": null }, { - "name": "mergeStatuss", + "name": "metadataJSONs", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "MergeStatus", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "actions", + "name": "resourceVersions", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "PullRequestAction", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, @@ -44796,7 +60211,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PullRequestOrdering", + "name": "_K8PodOrdering", "ofType": null } }, @@ -44831,6 +60246,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "filter", + "description": "", + "type": { + "kind": "INPUT_OBJECT", + "name": "_K8PodFilter", + "ofType": null + }, + "defaultValue": null } ], "type": { @@ -44838,7 +60263,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequest", + "name": "K8Pod", "ofType": null } }, @@ -44846,21 +60271,21 @@ "deprecationReason": null }, { - "name": "Org", + "name": "K8Container", "description": "", "args": [ { - "name": "id", + "name": "name", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "owner", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -44870,31 +60295,121 @@ "defaultValue": null }, { - "name": "ownerType", + "name": "timestamp", "description": "", "type": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "ids", + "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": "containerID", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "names", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "owners", + "name": "imageNames", "description": "", "type": { "kind": "LIST", @@ -44908,14 +60423,126 @@ "defaultValue": null }, { - "name": "ownerTypes", + "name": "timestamps", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "OwnerType", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "environments", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "containerJSONs", + "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": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "stateReasons", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "restartCounts", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "statusJSONs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "resourceVersions", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "containerIDs", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -44929,7 +60556,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_OrgOrdering", + "name": "_K8ContainerOrdering", "ofType": null } }, @@ -44971,7 +60598,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Org", + "name": "K8Container", "ofType": null } }, @@ -44979,11 +60606,11 @@ "deprecationReason": null }, { - "name": "SCMId", + "name": "DockerImage", "description": "", "args": [ { - "name": "login", + "name": "image", "description": "", "type": { "kind": "SCALAR", @@ -44993,7 +60620,7 @@ "defaultValue": null }, { - "name": "name", + "name": "imageName", "description": "", "type": { "kind": "SCALAR", @@ -45003,7 +60630,7 @@ "defaultValue": null }, { - "name": "avatar", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -45013,7 +60640,7 @@ "defaultValue": null }, { - "name": "logins", + "name": "images", "description": "", "type": { "kind": "LIST", @@ -45027,7 +60654,7 @@ "defaultValue": null }, { - "name": "names", + "name": "imageNames", "description": "", "type": { "kind": "LIST", @@ -45041,7 +60668,7 @@ "defaultValue": null }, { - "name": "avatars", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -45062,7 +60689,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_SCMIdOrdering", + "name": "_DockerImageOrdering", "ofType": null } }, @@ -45104,7 +60731,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMId", + "name": "DockerImage", "ofType": null } }, @@ -45112,21 +60739,11 @@ "deprecationReason": null }, { - "name": "GitHubId", + "name": "ImageLinked", "description": "", "args": [ { - "name": "login", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -45136,21 +60753,7 @@ "defaultValue": null }, { - "name": "logins", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "names", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -45171,7 +60774,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubIdOrdering", + "name": "_ImageLinkedOrdering", "ofType": null } }, @@ -45213,7 +60816,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubId", + "name": "ImageLinked", "ofType": null } }, @@ -45221,7 +60824,7 @@ "deprecationReason": null }, { - "name": "Tag", + "name": "Release", "description": "", "args": [ { @@ -45244,26 +60847,6 @@ }, "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": "", @@ -45302,34 +60885,6 @@ }, "defaultValue": null }, - { - "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": "", @@ -45352,7 +60907,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TagOrdering", + "name": "_ReleaseOrdering", "ofType": null } }, @@ -45394,7 +60949,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Tag", + "name": "Release", "ofType": null } }, @@ -45402,11 +60957,11 @@ "deprecationReason": null }, { - "name": "K8Pod", + "name": "HerokuApp", "description": "", "args": [ { - "name": "name", + "name": "app", "description": "", "type": { "kind": "SCALAR", @@ -45416,7 +60971,7 @@ "defaultValue": null }, { - "name": "phase", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -45426,7 +60981,7 @@ "defaultValue": null }, { - "name": "environment", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -45436,7 +60991,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "user", "description": "", "type": { "kind": "SCALAR", @@ -45446,7 +61001,7 @@ "defaultValue": null }, { - "name": "baseName", + "name": "appId", "description": "", "type": { "kind": "SCALAR", @@ -45456,7 +61011,7 @@ "defaultValue": null }, { - "name": "namespace", + "name": "release", "description": "", "type": { "kind": "SCALAR", @@ -45466,77 +61021,115 @@ "defaultValue": null }, { - "name": "statusJSON", + "name": "apps", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "host", + "name": "urls", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", + "name": "timestamps", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "specsJSON", + "name": "users", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "envJSON", + "name": "appIds", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "metadataJSON", + "name": "releases", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "containersCrashLoopBackOff", + "name": "orderBy", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_HerokuAppOrdering", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "resourceVersion", + "name": "first", "description": "", "type": { "kind": "SCALAR", @@ -45546,112 +61139,101 @@ "defaultValue": null }, { - "name": "names", + "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": "HerokuApp", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Application", + "description": "", + "args": [ { - "name": "phases", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "environments", + "name": "state", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "host", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "baseNames", + "name": "timestamp", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "namespaces", + "name": "domain", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "statusJSONs", + "name": "data", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "hosts", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -45672,7 +61254,7 @@ "defaultValue": null }, { - "name": "specsJSONs", + "name": "hosts", "description": "", "type": { "kind": "LIST", @@ -45686,7 +61268,7 @@ "defaultValue": null }, { - "name": "envJSONs", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -45700,7 +61282,7 @@ "defaultValue": null }, { - "name": "metadataJSONs", + "name": "domains", "description": "", "type": { "kind": "LIST", @@ -45714,14 +61296,14 @@ "defaultValue": null }, { - "name": "resourceVersions", + "name": "datas", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -45735,7 +61317,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8PodOrdering", + "name": "_ApplicationOrdering", "ofType": null } }, @@ -45777,7 +61359,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Pod", + "name": "Application", "ofType": null } }, @@ -45785,51 +61367,11 @@ "deprecationReason": null }, { - "name": "K8Container", + "name": "Team", "description": "", "args": [ { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "imageName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "environment", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerJSON", + "name": "id", "description": "", "type": { "kind": "SCALAR", @@ -45839,7 +61381,7 @@ "defaultValue": null }, { - "name": "state", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -45849,7 +61391,7 @@ "defaultValue": null }, { - "name": "stateReason", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -45859,27 +61401,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": "iconUrl", "description": "", "type": { "kind": "SCALAR", @@ -45889,17 +61411,7 @@ "defaultValue": null }, { - "name": "resourceVersion", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "containerID", + "name": "createdAt", "description": "", "type": { "kind": "SCALAR", @@ -45909,63 +61421,7 @@ "defaultValue": null }, { - "name": "names", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "imageNames", - "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": "environments", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerJSONs", + "name": "ids", "description": "", "type": { "kind": "LIST", @@ -45979,7 +61435,7 @@ "defaultValue": null }, { - "name": "states", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -45993,7 +61449,7 @@ "defaultValue": null }, { - "name": "stateReasons", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -46007,21 +61463,7 @@ "defaultValue": null }, { - "name": "restartCounts", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "statusJSONs", + "name": "iconUrls", "description": "", "type": { "kind": "LIST", @@ -46035,21 +61477,7 @@ "defaultValue": null }, { - "name": "resourceVersions", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "containerIDs", + "name": "createdAts", "description": "", "type": { "kind": "LIST", @@ -46070,7 +61498,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_K8ContainerOrdering", + "name": "_TeamOrdering", "ofType": null } }, @@ -46112,7 +61540,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "K8Container", + "name": "Team", "ofType": null } }, @@ -46120,11 +61548,21 @@ "deprecationReason": null }, { - "name": "DockerImage", + "name": "ChatTeam", "description": "", "args": [ { - "name": "image", + "name": "id", + "description": "", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -46134,7 +61572,7 @@ "defaultValue": null }, { - "name": "imageName", + "name": "provider", "description": "", "type": { "kind": "SCALAR", @@ -46144,7 +61582,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "tenantId", "description": "", "type": { "kind": "SCALAR", @@ -46154,21 +61592,51 @@ "defaultValue": null }, { - "name": "images", + "name": "domain", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "messageCount", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "emailDomain", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "imageNames", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -46182,7 +61650,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "providers", "description": "", "type": { "kind": "LIST", @@ -46196,78 +61664,35 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "domains", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_DockerImageOrdering", + "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": "DockerImage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ImageLinked", - "description": "", - "args": [ - { - "name": "timestamp", + "name": "messageCounts", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamps", + "name": "emailDomains", "description": "", "type": { "kind": "LIST", @@ -46288,7 +61713,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ImageLinkedOrdering", + "name": "_ChatTeamOrdering", "ofType": null } }, @@ -46330,7 +61755,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ImageLinked", + "name": "ChatTeam", "ofType": null } }, @@ -46338,7 +61763,7 @@ "deprecationReason": null }, { - "name": "Release", + "name": "Person", "description": "", "args": [ { @@ -46352,7 +61777,7 @@ "defaultValue": null }, { - "name": "name", + "name": "forename", "description": "", "type": { "kind": "SCALAR", @@ -46362,7 +61787,17 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "surname", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -46386,7 +61821,7 @@ "defaultValue": null }, { - "name": "names", + "name": "forenames", "description": "", "type": { "kind": "LIST", @@ -46400,7 +61835,21 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "surnames", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "names", "description": "", "type": { "kind": "LIST", @@ -46421,7 +61870,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ReleaseOrdering", + "name": "_PersonOrdering", "ofType": null } }, @@ -46463,7 +61912,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Release", + "name": "Person", "ofType": null } }, @@ -46471,31 +61920,31 @@ "deprecationReason": null }, { - "name": "HerokuApp", + "name": "Status", "description": "", "args": [ { - "name": "app", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StatusState", "ofType": null }, "defaultValue": null }, { - "name": "timestamp", + "name": "description", "description": "", "type": { "kind": "SCALAR", @@ -46505,7 +61954,7 @@ "defaultValue": null }, { - "name": "user", + "name": "targetUrl", "description": "", "type": { "kind": "SCALAR", @@ -46515,7 +61964,7 @@ "defaultValue": null }, { - "name": "appId", + "name": "context", "description": "", "type": { "kind": "SCALAR", @@ -46525,7 +61974,7 @@ "defaultValue": null }, { - "name": "release", + "name": "timestamp", "description": "", "type": { "kind": "SCALAR", @@ -46535,35 +61984,35 @@ "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": "states", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StatusState", "ofType": null } }, "defaultValue": null }, { - "name": "timestamps", + "name": "descriptions", "description": "", "type": { "kind": "LIST", @@ -46577,7 +62026,7 @@ "defaultValue": null }, { - "name": "users", + "name": "targetUrls", "description": "", "type": { "kind": "LIST", @@ -46591,7 +62040,7 @@ "defaultValue": null }, { - "name": "appIds", + "name": "contexts", "description": "", "type": { "kind": "LIST", @@ -46605,7 +62054,7 @@ "defaultValue": null }, { - "name": "releases", + "name": "timestamps", "description": "", "type": { "kind": "LIST", @@ -46626,7 +62075,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_HerokuAppOrdering", + "name": "_StatusOrdering", "ofType": null } }, @@ -46668,7 +62117,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "HerokuApp", + "name": "Status", "ofType": null } }, @@ -46676,113 +62125,126 @@ "deprecationReason": null }, { - "name": "Application", + "name": "Email", "description": "", "args": [ { - "name": "id", + "name": "address", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "addresss", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "host", + "name": "orderBy", "description": "", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_EmailOrdering", + "ofType": null + } }, "defaultValue": null }, { - "name": "timestamp", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "domain", + "name": "first", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null }, { - "name": "data", + "name": "offset", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Email", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Fingerprint", + "description": "", + "args": [ { - "name": "ids", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "states", + "name": "sha", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "hosts", + "name": "data", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "timestamps", + "name": "names", "description": "", "type": { "kind": "LIST", @@ -46796,7 +62258,7 @@ "defaultValue": null }, { - "name": "domains", + "name": "shas", "description": "", "type": { "kind": "LIST", @@ -46831,7 +62293,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ApplicationOrdering", + "name": "_FingerprintOrdering", "ofType": null } }, @@ -46873,7 +62335,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Application", + "name": "Fingerprint", "ofType": null } }, @@ -46881,7 +62343,7 @@ "deprecationReason": null }, { - "name": "Team", + "name": "PushImpact", "description": "", "args": [ { @@ -46889,33 +62351,13 @@ "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", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "iconUrl", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -46925,7 +62367,7 @@ "defaultValue": null }, { - "name": "createdAt", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -46942,42 +62384,14 @@ "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": "descriptions", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "iconUrls", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -46991,7 +62405,7 @@ "defaultValue": null }, { - "name": "createdAts", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -47012,7 +62426,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_TeamOrdering", + "name": "_PushImpactOrdering", "ofType": null } }, @@ -47054,7 +62468,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Team", + "name": "PushImpact", "ofType": null } }, @@ -47062,7 +62476,7 @@ "deprecationReason": null }, { - "name": "ChatTeam", + "name": "PullRequestImpact", "description": "", "args": [ { @@ -47076,37 +62490,7 @@ "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", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -47116,17 +62500,7 @@ "defaultValue": null }, { - "name": "messageCount", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "emailDomain", + "name": "data", "description": "", "type": { "kind": "SCALAR", @@ -47150,7 +62524,7 @@ "defaultValue": null }, { - "name": "names", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -47164,7 +62538,7 @@ "defaultValue": null }, { - "name": "providers", + "name": "datas", "description": "", "type": { "kind": "LIST", @@ -47178,44 +62552,83 @@ "defaultValue": null }, { - "name": "domains", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_PullRequestImpactOrdering", "ofType": null } }, "defaultValue": null }, { - "name": "messageCounts", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "emailDomains", + "name": "first", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "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": "PullRequestImpact", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ResourceProvider", + "description": "", + "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 }, @@ -47227,7 +62640,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ChatTeamOrdering", + "name": "_ResourceProviderOrdering", "ofType": null } }, @@ -47268,8 +62681,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ChatTeam", + "kind": "INTERFACE", + "name": "ResourceProvider", "ofType": null } }, @@ -47277,7 +62690,7 @@ "deprecationReason": null }, { - "name": "Person", + "name": "GitHubProvider", "description": "", "args": [ { @@ -47291,7 +62704,17 @@ "defaultValue": null }, { - "name": "forename", + "name": "private", + "description": "", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -47301,7 +62724,7 @@ "defaultValue": null }, { - "name": "surname", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -47311,7 +62734,7 @@ "defaultValue": null }, { - "name": "name", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -47320,6 +62743,26 @@ }, "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": "", @@ -47335,7 +62778,7 @@ "defaultValue": null }, { - "name": "forenames", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -47349,7 +62792,7 @@ "defaultValue": null }, { - "name": "surnames", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -47363,7 +62806,7 @@ "defaultValue": null }, { - "name": "names", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -47376,6 +62819,34 @@ }, "defaultValue": null }, + { + "name": "gitUrls", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "providerTypes", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ProviderType", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -47384,7 +62855,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_PersonOrdering", + "name": "_GitHubProviderOrdering", "ofType": null } }, @@ -47426,7 +62897,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Person", + "name": "GitHubProvider", "ofType": null } }, @@ -47434,41 +62905,41 @@ "deprecationReason": null }, { - "name": "Status", + "name": "SCMProvider", "description": "", "args": [ { - "name": "id", + "name": "authProviderId", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "state", + "name": "id", "description": "", "type": { - "kind": "ENUM", - "name": "StatusState", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "description", + "name": "private", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null }, { - "name": "targetUrl", + "name": "url", "description": "", "type": { "kind": "SCALAR", @@ -47478,7 +62949,7 @@ "defaultValue": null }, { - "name": "context", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -47488,7 +62959,7 @@ "defaultValue": null }, { - "name": "timestamp", + "name": "apiUrl", "description": "", "type": { "kind": "SCALAR", @@ -47498,49 +62969,41 @@ "defaultValue": null }, { - "name": "ids", + "name": "gitUrl", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "states", + "name": "providerType", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StatusState", - "ofType": null - } + "kind": "ENUM", + "name": "ProviderType", + "ofType": null }, "defaultValue": null }, { - "name": "descriptions", + "name": "ids", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "targetUrls", + "name": "urls", "description": "", "type": { "kind": "LIST", @@ -47554,7 +63017,7 @@ "defaultValue": null }, { - "name": "contexts", + "name": "providerIds", "description": "", "type": { "kind": "LIST", @@ -47568,7 +63031,7 @@ "defaultValue": null }, { - "name": "timestamps", + "name": "apiUrls", "description": "", "type": { "kind": "LIST", @@ -47582,85 +63045,28 @@ "defaultValue": null }, { - "name": "orderBy", + "name": "gitUrls", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_StatusOrdering", + "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": "Status", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Email", - "description": "", - "args": [ - { - "name": "address", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresss", + "name": "providerTypes", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ProviderType", "ofType": null } }, @@ -47674,7 +63080,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_EmailOrdering", + "name": "_SCMProviderOrdering", "ofType": null } }, @@ -47716,7 +63122,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Email", + "name": "SCMProvider", "ofType": null } }, @@ -47724,21 +63130,21 @@ "deprecationReason": null }, { - "name": "Fingerprint", + "name": "GitHubAppResourceProvider", "description": "", "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "sha", + "name": "providerId", "description": "", "type": { "kind": "SCALAR", @@ -47748,68 +63154,69 @@ "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": "OBJECT", + "name": "GitHubAppResourceProvider", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DockerRegistryProvider", + "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": "shas", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "datas", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_FingerprintOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "DockerRegistryType", + "ofType": null }, "defaultValue": null }, @@ -47849,7 +63256,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Fingerprint", + "name": "DockerRegistryProvider", "ofType": null } }, @@ -47857,7 +63264,7 @@ "deprecationReason": null }, { - "name": "PushImpact", + "name": "BinaryRepositoryProvider", "description": "", "args": [ { @@ -47881,7 +63288,7 @@ "defaultValue": null }, { - "name": "data", + "name": "name", "description": "", "type": { "kind": "SCALAR", @@ -47891,58 +63298,12 @@ "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "datas", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "orderBy", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_PushImpactOrdering", - "ofType": null - } + "kind": "ENUM", + "name": "BinaryRepositoryType", + "ofType": null }, "defaultValue": null }, @@ -47982,7 +63343,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PushImpact", + "name": "BinaryRepositoryProvider", "ofType": null } }, @@ -47990,7 +63351,7 @@ "deprecationReason": null }, { - "name": "PullRequestImpact", + "name": "UserJoinedChannel", "description": "", "args": [ { @@ -48003,26 +63364,6 @@ }, "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": "", @@ -48038,49 +63379,41 @@ "defaultValue": null }, { - "name": "urls", + "name": "orderBy", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "_UserJoinedChannelOrdering", "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": "_PullRequestImpactOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "_id", + "name": "offset", "description": "", "type": { "kind": "SCALAR", @@ -48088,23 +63421,40 @@ "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UserJoinedChannel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Webhook", + "description": "", + "args": [ { - "name": "first", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "resourceProviderId", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null @@ -48115,7 +63465,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PullRequestImpact", + "name": "Webhook", "ofType": null } }, @@ -48123,7 +63473,7 @@ "deprecationReason": null }, { - "name": "ResourceProvider", + "name": "ChannelLink", "description": "", "args": [ { @@ -48136,6 +63486,20 @@ }, "defaultValue": null }, + { + "name": "ids", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, { "name": "orderBy", "description": "", @@ -48144,7 +63508,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_ResourceProviderOrdering", + "name": "_ChannelLinkOrdering", "ofType": null } }, @@ -48185,8 +63549,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ResourceProvider", + "kind": "OBJECT", + "name": "ChannelLink", "ofType": null } }, @@ -48194,7 +63558,7 @@ "deprecationReason": null }, { - "name": "GitHubProvider", + "name": "Review", "description": "", "args": [ { @@ -48208,17 +63572,17 @@ "defaultValue": null }, { - "name": "private", + "name": "gitHubId", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "url", + "name": "reviewId", "description": "", "type": { "kind": "SCALAR", @@ -48228,7 +63592,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "body", "description": "", "type": { "kind": "SCALAR", @@ -48238,17 +63602,17 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "state", "description": "", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "ReviewState", "ofType": null }, "defaultValue": null }, { - "name": "gitUrl", + "name": "submittedAt", "description": "", "type": { "kind": "SCALAR", @@ -48258,11 +63622,11 @@ "defaultValue": null }, { - "name": "providerType", + "name": "htmlUrl", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null @@ -48282,7 +63646,7 @@ "defaultValue": null }, { - "name": "urls", + "name": "gitHubIds", "description": "", "type": { "kind": "LIST", @@ -48296,7 +63660,7 @@ "defaultValue": null }, { - "name": "providerIds", + "name": "reviewIds", "description": "", "type": { "kind": "LIST", @@ -48310,7 +63674,7 @@ "defaultValue": null }, { - "name": "apiUrls", + "name": "bodys", "description": "", "type": { "kind": "LIST", @@ -48324,7 +63688,21 @@ "defaultValue": null }, { - "name": "gitUrls", + "name": "states", + "description": "", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReviewState", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "submittedAts", "description": "", "type": { "kind": "LIST", @@ -48338,14 +63716,14 @@ "defaultValue": null }, { - "name": "providerTypes", + "name": "htmlUrls", "description": "", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -48359,7 +63737,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "_GitHubProviderOrdering", + "name": "_ReviewOrdering", "ofType": null } }, @@ -48401,7 +63779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "GitHubProvider", + "name": "Review", "ofType": null } }, @@ -48409,41 +63787,58 @@ "deprecationReason": null }, { - "name": "SCMProvider", + "name": "GenericResourceUser", "description": "", "args": [ { - "name": "id", + "name": "login", "description": "", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "private", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "url", + "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": "providerId", + "name": "login", "description": "", "type": { "kind": "SCALAR", @@ -48453,130 +63848,106 @@ "defaultValue": null }, { - "name": "apiUrl", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "gitUrl", + "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": "providerType", + "name": "id", "description": "", "type": { - "kind": "ENUM", - "name": "ProviderType", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "ids", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "urls", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "providerIds", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "apiUrls", + "name": "_id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SystemAccount", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "KubernetesClusterProvider", + "description": "", + "args": [ { - "name": "gitUrls", + "name": "id", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "providerTypes", + "name": "url", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ProviderType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "orderBy", + "name": "name", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SCMProviderOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, @@ -48616,7 +63987,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SCMProvider", + "name": "KubernetesClusterProvider", "ofType": null } }, @@ -48624,7 +63995,7 @@ "deprecationReason": null }, { - "name": "DockerRegistryProvider", + "name": "Credential", "description": "", "args": [ { @@ -48638,21 +64009,38 @@ "defaultValue": null }, { - "name": "url", + "name": "_id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Credential", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OAuthToken", + "description": "", + "args": [ { - "name": "name", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null @@ -48666,19 +64054,36 @@ "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": "first", + "name": "id", "description": "", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null }, { - "name": "offset", + "name": "_id", "description": "", "type": { "kind": "SCALAR", @@ -48693,7 +64098,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "DockerRegistryProvider", + "name": "Password", "ofType": null } }, @@ -48701,7 +64106,7 @@ "deprecationReason": null }, { - "name": "UserJoinedChannel", + "name": "CommitFingerprintImpact", "description": "", "args": [ { @@ -48715,59 +64120,72 @@ "defaultValue": null }, { - "name": "ids", + "name": "type", "description": "", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "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": "orderBy", - "description": "", + "name": "id", + "description": "The id of the AtmJob to match", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_UserJoinedChannelOrdering", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "name", + "description": "The name of AtmJobs to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "owner", + "description": "The owner of AtmJobs to match", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null }, { - "name": "offset", - "description": "", + "name": "state", + "description": "The state of AtmJobs to match", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "AtmJobState", "ofType": null }, "defaultValue": null @@ -48777,21 +64195,25 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "UserJoinedChannel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJob", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Webhook", - "description": "", + "name": "AtmJobTask", + "description": "Return AtmJobTasks", "args": [ { "name": "id", - "description": "", + "description": "The id of the AtmJobTask to match", "type": { "kind": "SCALAR", "name": "ID", @@ -48800,14 +64222,79 @@ "defaultValue": null }, { - "name": "resourceProviderId", - "description": "", + "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 + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AtmJobTask", + "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": { @@ -48815,7 +64302,111 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Webhook", + "name": "CommitIssueRelationship", + "ofType": null + } + }, + "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 + } + }, + "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 } }, @@ -48823,195 +64414,222 @@ "deprecationReason": null }, { - "name": "ChannelLink", - "description": "", + "name": "SdmGoal", + "description": "Auto-generated subscription for SdmGoal", "args": [ { - "name": "id", - "description": "", + "name": "approvalRequired", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "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": "orderBy", - "description": "", + "name": "data", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ChannelLinkOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "description", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "first", - "description": "", + "name": "environment", + "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": "error", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Review", - "description": "", - "args": [ + }, { - "name": "id", - "description": "", + "name": "externalKey", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "gitHubId", - "description": "", + "name": "externalUrl", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "reviewId", - "description": "", + "name": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "body", - "description": "", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "state", - "description": "", + "name": "name", + "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": "parameters", + "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": "phase", + "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": "preApprovalRequired", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "gitHubIds", - "description": "", + "name": "retryFeasible", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, "defaultValue": null }, { - "name": "reviewIds", - "description": "", + "name": "sha", + "description": null, "type": { "kind": "LIST", "name": null, @@ -49024,8 +64642,8 @@ "defaultValue": null }, { - "name": "bodys", - "description": "", + "name": "signature", + "description": null, "type": { "kind": "LIST", "name": null, @@ -49038,36 +64656,36 @@ "defaultValue": null }, { - "name": "states", - "description": "", + "name": "state", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "ENUM", - "name": "ReviewState", + "name": "SdmGoalState", "ofType": null } }, "defaultValue": null }, { - "name": "submittedAts", - "description": "", + "name": "ts", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "htmlUrls", - "description": "", + "name": "uniqueName", + "description": null, "type": { "kind": "LIST", "name": null, @@ -49080,46 +64698,30 @@ "defaultValue": null }, { - "name": "orderBy", - "description": "", + "name": "url", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "_ReviewOrdering", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", + "name": "version", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, "defaultValue": null } @@ -49129,7 +64731,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Review", + "name": "SdmGoal", "ofType": null } }, @@ -49137,120 +64739,90 @@ "deprecationReason": null }, { - "name": "GenericResourceUser", - "description": "", + "name": "SdmGoalSet", + "description": "Auto-generated subscription for SdmGoalSet", "args": [ { - "name": "login", - "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": "goalSet", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericResourceUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ResourceUser", - "description": "", - "args": [ - { - "name": "login", - "description": "", + "name": "goalSetId", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "id", - "description": "", + "name": "sha", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericResourceUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SystemAccount", - "description": "", - "args": [ - { - "name": "id", - "description": "", + "name": "state", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalState", + "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 } @@ -49260,7 +64832,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SystemAccount", + "name": "SdmGoalSet", "ofType": null } }, @@ -49268,66 +64840,107 @@ "deprecationReason": null }, { - "name": "KubernetesClusterProvider", - "description": "", + "name": "SdmGoalDisplay", + "description": "Auto-generated subscription for SdmGoalDisplay", "args": [ { - "name": "id", - "description": "", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "url", - "description": "", + "name": "format", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayFormat", + "ofType": null + } }, "defaultValue": null }, { - "name": "name", - "description": "", + "name": "sha", + "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "state", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SdmGoalDisplayState", + "ofType": null + } }, "defaultValue": null }, { - "name": "first", - "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 - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SdmGoalDisplay", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SdmBuildIdentifier", + "description": "Auto-generated subscription for SdmBuildIdentifier", + "args": [ { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "name": "identifier", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -49337,7 +64950,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "KubernetesClusterProvider", + "name": "SdmBuildIdentifier", "ofType": null } }, @@ -49345,26 +64958,62 @@ "deprecationReason": null }, { - "name": "Credential", - "description": "", + "name": "SdmDeployEnablement", + "description": "Auto-generated subscription for SdmDeployEnablement", "args": [ { - "name": "id", - "description": "", + "name": "owner", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "providerId", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "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 } @@ -49373,8 +65022,8 @@ "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Credential", + "kind": "OBJECT", + "name": "SdmDeployEnablement", "ofType": null } }, @@ -49382,26 +65031,48 @@ "deprecationReason": null }, { - "name": "OAuthToken", - "description": "", + "name": "SdmVersion", + "description": "Auto-generated subscription for SdmVersion", "args": [ { - "name": "id", - "description": "", + "name": "branch", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_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": "version", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -49411,7 +65082,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "OAuthToken", + "name": "SdmVersion", "ofType": null } }, @@ -49419,26 +65090,34 @@ "deprecationReason": null }, { - "name": "Password", - "description": "", + "name": "SdmGoalSetBadge", + "description": "Auto-generated subscription for SdmGoalSetBadge", "args": [ { - "name": "id", - "description": "", + "name": "sdm", + "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null }, { - "name": "_id", - "description": "", + "name": "token", + "description": null, "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null } @@ -49448,7 +65127,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Password", + "name": "SdmGoalSetBadge", "ofType": null } }, @@ -49456,39 +65135,39 @@ "deprecationReason": null }, { - "name": "SdmGoal", - "description": "Auto-generated subscription for SdmGoal", + "name": "SdmPreference", + "description": "Auto-generated subscription for SdmPreference", "args": [ { - "name": "approvalRequired", + "name": "key", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "branch", + "name": "ttl", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "data", + "name": "value", "description": null, "type": { "kind": "LIST", @@ -49500,9 +65179,42 @@ } }, "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": "description", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -49516,21 +65228,21 @@ "defaultValue": null }, { - "name": "environment", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "error", + "name": "type", "description": null, "type": { "kind": "LIST", @@ -49542,9 +65254,26 @@ } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyCompliance", + "description": "Auto-generated subscription for PolicyCompliance", + "args": [ { - "name": "externalKey", + "name": "_branch", "description": null, "type": { "kind": "LIST", @@ -49558,7 +65287,7 @@ "defaultValue": null }, { - "name": "externalUrl", + "name": "_owner", "description": null, "type": { "kind": "LIST", @@ -49572,7 +65301,7 @@ "defaultValue": null }, { - "name": "goalSet", + "name": "_repo", "description": null, "type": { "kind": "LIST", @@ -49586,7 +65315,7 @@ "defaultValue": null }, { - "name": "goalSetId", + "name": "_sha", "description": null, "type": { "kind": "LIST", @@ -49600,7 +65329,7 @@ "defaultValue": null }, { - "name": "name", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -49614,49 +65343,83 @@ "defaultValue": null }, { - "name": "phase", + "name": "state", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PolicyCompliaceState", "ofType": null } }, "defaultValue": null }, { - "name": "preApprovalRequired", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyCompliance", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyTargetStream", + "description": "Auto-generated subscription for PolicyTargetStream", + "args": [ { - "name": "retryFeasible", + "name": "name", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, "defaultValue": null - }, + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PolicyTargetStream", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PolicyTarget", + "description": "Auto-generated subscription for PolicyTarget", + "args": [ { - "name": "sha", + "name": "data", "description": null, "type": { "kind": "LIST", @@ -49670,7 +65433,7 @@ "defaultValue": null }, { - "name": "signature", + "name": "displayName", "description": null, "type": { "kind": "LIST", @@ -49684,35 +65447,35 @@ "defaultValue": null }, { - "name": "state", + "name": "displayValue", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "name", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "uniqueName", + "name": "sha", "description": null, "type": { "kind": "LIST", @@ -49726,28 +65489,28 @@ "defaultValue": null }, { - "name": "url", + "name": "streams", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, "defaultValue": null }, { - "name": "version", + "name": "type", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -49759,7 +65522,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoal", + "name": "PolicyTarget", "ofType": null } }, @@ -49767,11 +65530,11 @@ "deprecationReason": null }, { - "name": "SdmGoalSet", - "description": "Auto-generated subscription for SdmGoalSet", + "name": "Card", + "description": "Auto-generated subscription for Card", "args": [ { - "name": "branch", + "name": "key", "description": null, "type": { "kind": "LIST", @@ -49785,7 +65548,7 @@ "defaultValue": null }, { - "name": "goalSet", + "name": "post", "description": null, "type": { "kind": "LIST", @@ -49799,7 +65562,7 @@ "defaultValue": null }, { - "name": "goalSetId", + "name": "shortTitle", "description": null, "type": { "kind": "LIST", @@ -49813,42 +65576,42 @@ "defaultValue": null }, { - "name": "sha", + "name": "ts", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "state", + "name": "ttl", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmGoalState", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, "defaultValue": null }, { - "name": "ts", + "name": "type", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, @@ -49860,7 +65623,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSet", + "name": "Card", "ofType": null } }, @@ -49868,25 +65631,51 @@ "deprecationReason": null }, { - "name": "SdmGoalDisplay", - "description": "Auto-generated subscription for SdmGoalDisplay", + "name": "Notification", + "description": "Auto-generated subscription for Notification", "args": [ { - "name": "branch", + "name": "body", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null }, { - "name": "sha", + "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", @@ -49900,21 +65689,17 @@ "defaultValue": null }, { - "name": "state", + "name": "ts", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SdmGoalDisplayState", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "defaultValue": null }, { - "name": "ts", + "name": "ttl", "description": null, "type": { "kind": "LIST", @@ -49933,7 +65718,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalDisplay", + "name": "Notification", "ofType": null } }, @@ -49941,11 +65726,11 @@ "deprecationReason": null }, { - "name": "SdmBuildIdentifier", - "description": "Auto-generated subscription for SdmBuildIdentifier", + "name": "AspectRegistration", + "description": "Auto-generated subscription for AspectRegistration", "args": [ { - "name": "identifier", + "name": "category", "description": null, "type": { "kind": "LIST", @@ -49957,26 +65742,9 @@ } }, "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": "owner", + "name": "description", "description": null, "type": { "kind": "LIST", @@ -49990,7 +65758,7 @@ "defaultValue": null }, { - "name": "providerId", + "name": "displayName", "description": null, "type": { "kind": "LIST", @@ -50004,7 +65772,7 @@ "defaultValue": null }, { - "name": "repo", + "name": "endpoint", "description": null, "type": { "kind": "LIST", @@ -50018,38 +65786,21 @@ "defaultValue": null }, { - "name": "state", + "name": "manageable", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "SdmDeployState", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmDeployEnablement", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SdmVersion", - "description": "Auto-generated subscription for SdmVersion", - "args": [ + }, { - "name": "branch", + "name": "name", "description": null, "type": { "kind": "LIST", @@ -50063,7 +65814,7 @@ "defaultValue": null }, { - "name": "sha", + "name": "owner", "description": null, "type": { "kind": "LIST", @@ -50077,7 +65828,7 @@ "defaultValue": null }, { - "name": "version", + "name": "shortName", "description": null, "type": { "kind": "LIST", @@ -50089,26 +65840,23 @@ } }, "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SdmVersion", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SdmGoalSetBadge", - "description": "Auto-generated subscription for SdmGoalSetBadge", - "args": [ + }, { - "name": "sdm", + "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", @@ -50122,7 +65870,21 @@ "defaultValue": null }, { - "name": "token", + "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", @@ -50141,7 +65903,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmGoalSetBadge", + "name": "AspectRegistration", "ofType": null } }, @@ -50149,12 +65911,26 @@ "deprecationReason": null }, { - "name": "SdmPreference", - "description": "Auto-generated subscription for SdmPreference", + "name": "AtomistLog", + "description": "Auto-generated subscription for AtomistLog", "args": [ { - "name": "key", - "description": null, + "name": "timestamp", + "description": "Status timestamp", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "team_id", + "description": "Team ID for which log message is produced", "type": { "kind": "LIST", "name": null, @@ -50167,22 +65943,36 @@ "defaultValue": null }, { - "name": "ttl", - "description": null, + "name": "level", + "description": "Log message level: debug, info, warn, error, fatal", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, "defaultValue": null }, { - "name": "value", - "description": null, + "name": "message", + "description": "Log message", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "category", + "description": "Grouping, namespace etc.", "type": { "kind": "LIST", "name": null, @@ -50200,7 +65990,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmPreference", + "name": "AtomistLog", "ofType": null } }, @@ -50208,133 +65998,93 @@ "deprecationReason": null }, { - "name": "SdmRepoProvenance", - "description": "Auto-generated subscription for SdmRepoProvenance", + "name": "RepoOnboarded", + "description": "", "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "SdmRepoProvenance", + "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": "PodDeployment", - "description": "Auto-generated subscription for PodDeployment", - "args": [ - { - "name": "deploymentName", - "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": "imageTag", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "previousSha", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sha", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "targetReplicas", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], + "name": "repo", + "description": "GitHub Repository", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "PodDeployment", + "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": "CommitIssueRelationship", - "description": "Auto-generated subscription for CommitIssueRelationship", - "args": [ - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", + "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": "ENUM", - "name": "CommitIssueRelationshipType", + "kind": "OBJECT", + "name": "__Type", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CommitIssueRelationship", + "name": "__Type", "ofType": null } }, @@ -50342,103 +66092,318 @@ "deprecationReason": null }, { - "name": "Deployment", - "description": "Auto-generated subscription for Deployment", - "args": [ - { - "name": "environment", - "description": null, - "type": { - "kind": "LIST", + "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": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__Directive", "ofType": null } - }, - "defaultValue": null - }, + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ { - "name": "ts", + "name": "includeDeprecated", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "IssueRelationship", - "description": "Auto-generated subscription for IssueRelationship", + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, "args": [ { - "name": "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", + "name": "includeDeprecated", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - "defaultValue": null + "defaultValue": "false" } ], "type": { - "kind": "LIST", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "IssueRelationship", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50446,185 +66411,51 @@ "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": "description", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Card", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "Notification", - "description": "Auto-generated subscription for Notification", - "args": [ - { - "name": "body", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contentType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "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": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "__InputValue", "ofType": null } - }, - "defaultValue": null + } } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Notification", + "name": "__Type", "ofType": null } }, @@ -50632,58 +66463,15 @@ "deprecationReason": null }, { - "name": "Feedback", - "description": "Auto-generated subscription for Feedback", - "args": [ - { - "name": "email", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "invocation_id", - "description": "compositeId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "isDeprecated", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Feedback", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, @@ -50691,72 +66479,38 @@ "deprecationReason": null }, { - "name": "ManifestoSignature", - "description": "Auto-generated subscription for ManifestoSignature", - "args": [ - { - "name": "userId", - "description": "compositeId", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "userName", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "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": "__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": "OBJECT", - "name": "ManifestoSignature", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -50764,187 +66518,27 @@ "deprecationReason": null }, { - "name": "SentryAlert", - "description": "Auto-generated subscription for SentryAlert", - "args": [ - { - "name": "culprit", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "level", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "message", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "project", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "project_name", - "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": "description", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SentryAlert", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "AtomistLog", - "description": "Auto-generated subscription for AtomistLog", - "args": [ - { - "name": "timestamp", - "description": "Status timestamp", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "team_id", - "description": "Team ID for which log message is produced", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "level", - "description": "Log message level: debug, info, warn, error, fatal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "message", - "description": "Log message", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "category", - "description": "Grouping, namespace etc.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], + "name": "type", + "description": null, + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AtomistLog", + "name": "__Type", "ofType": null } }, @@ -50952,17 +66546,13 @@ "deprecationReason": null }, { - "name": "RepoOnboarded", - "description": "", + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RepoOnboarded", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -50975,70 +66565,86 @@ }, { "kind": "OBJECT", - "name": "RepoOnboarded", - "description": "The data for an existing Repo has been loaded and is ready for querying", + "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": "repo", - "description": "GitHub Repository", + "name": "name", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Repo", + "kind": "SCALAR", + "name": "String", "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.", + "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": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "queryType", - "description": "The type that query operations will be rooted at.", + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51046,32 +66652,44 @@ "deprecationReason": null }, { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "name": "description", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", + "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": "locations", + "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "directives", - "description": "A list of all directives supported by this server.", + "name": "args", + "description": null, "args": [], "type": { "kind": "NON_NULL", @@ -51084,7 +66702,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__Directive", + "name": "__InputValue", "ofType": null } } @@ -51100,29 +66718,198 @@ "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": [ + "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": "kind", - "description": null, - "args": [], + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FingerprintsForCommitsInput", + "description": "", + "fields": null, + "inputFields": [ + { + "name": "commitSha", + "description": "", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "SCALAR", + "name": "String", "ofType": null } }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null }, + { + "name": "repoId", + "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": "_IssueFilter", + "description": "", + "fields": null, + "inputFields": [ { "name": "name", - "description": null, + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GenericSourceFingerprint", + "description": "", + "fields": [ + { + "name": "data", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -51133,8 +66920,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -51145,219 +66932,184 @@ "deprecationReason": null }, { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], + "name": "displayType", + "description": "", + "args": [], "type": { - "kind": "LIST", - "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": "displayValue", + "description": "", "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "possibleTypes", - "description": null, + "name": "id", + "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": "ID", + "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": "name", + "description": "", + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "inputFields", - "description": null, + "name": "sha", + "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": "type", + "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 } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "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 - }, + "kind": "OBJECT", + "name": "LeinDependency", + "description": "", + "fields": [ { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "name": "artifact", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "name": "data", + "description": "", + "args": [], + "type": { + "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": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", + "name": "displayType", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "name": "displayValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "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, + "name": "id", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -51365,36 +67117,32 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "name", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", - "description": null, + "name": "sha", + "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, @@ -51402,14 +67150,14 @@ }, { "name": "type", - "description": null, + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -51417,47 +67165,41 @@ "deprecationReason": null }, { - "name": "isDeprecated", - "description": null, + "name": "version", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "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": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "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": "MavenDependency", + "description": "", "fields": [ { - "name": "name", - "description": null, + "name": "artifact", + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -51472,8 +67214,8 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "data", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -51484,24 +67226,20 @@ "deprecationReason": null }, { - "name": "type", - "description": null, + "name": "displayName", + "description": "", "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", + "name": "displayType", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -51510,37 +67248,10 @@ }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "displayValue", + "description": "", "args": [], "type": { "kind": "SCALAR", @@ -51551,15 +67262,15 @@ "deprecationReason": null }, { - "name": "isDeprecated", - "description": null, + "name": "group", + "description": "", "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, @@ -51567,31 +67278,24 @@ "deprecationReason": null }, { - "name": "deprecationReason", - "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 - } - ], - "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, + "description": "", "args": [], "type": { "kind": "NON_NULL", @@ -51606,60 +67310,48 @@ "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "sha", + "description": "", "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "locations", - "description": null, + "name": "type", + "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": "SCALAR", + "name": "String", + "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", - "description": null, + "name": "version", + "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, @@ -51667,133 +67359,159 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null }, { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, + "kind": "OBJECT", + "name": "NpmDependency", + "description": "", + "fields": [ { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", + "name": "data", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", + "name": "displayName", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", + "name": "displayType", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", + "name": "displayValue", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", + "name": "id", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "UNION", - "description": "Location adjacent to a union definition.", + "name": "name", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", + "name": "sha", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", + "name": "type", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", + "name": "version", + "description": "", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [ { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "SourceFingerprint", + "ofType": null } ], + "enumValues": null, "possibleTypes": null }, { @@ -51834,70 +67552,47 @@ "interfaces": [], "enumValues": null, "possibleTypes": null - } - ], - "directives": [ - { - "name": "model", - "description": "", - "locations": [ - "FIELD" - ], - "args": [] }, { - "name": "alias", - "description": "", - "locations": [ - "ARGUMENT_DEFINITION" - ], - "args": [ + "kind": "INPUT_OBJECT", + "name": "CustomNotificationActionGroupInput", + "description": "Auto generated input for type NotificationActionGroup", + "fields": null, + "inputFields": [ { - "name": "for", - "description": "", + "name": "actions", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomCardActionInput", "ofType": null } }, "defaultValue": null - } - ] - }, - { - "name": "authorization", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [ + }, { - "name": "permissions", - "description": "", + "name": "text", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null } - ] - }, + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + } + ], + "directives": [ { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", "locations": [ "FIELD", "FRAGMENT_SPREAD", @@ -51906,7 +67601,7 @@ "args": [ { "name": "if", - "description": "Skipped when true.", + "description": "Included when true.", "type": { "kind": "NON_NULL", "name": null, @@ -51921,8 +67616,8 @@ ] }, { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", "locations": [ "FIELD", "FRAGMENT_SPREAD", @@ -51931,7 +67626,7 @@ "args": [ { "name": "if", - "description": "Included when true.", + "description": "Skipped when true.", "type": { "kind": "NON_NULL", "name": null, diff --git a/lib/internal/event/NoOpEventStore.ts b/lib/internal/event/NoOpEventStore.ts new file mode 100644 index 000000000..cfd001fca --- /dev/null +++ b/lib/internal/event/NoOpEventStore.ts @@ -0,0 +1,42 @@ +import { EventStore } from "../../spi/event/EventStore"; +import { + CommandIncoming, + EventIncoming, +} from "../transport/RequestProcessor"; +import { guid } from "../util/string"; + +export class NoOpEventStore implements EventStore { + + public commandSeries(): [number[], number[]] { + return [[], []]; + } + + public commands(from?: number): any[] { + return []; + } + + public eventSeries(): [number[], number[]] { + return [[], []]; + } + + public events(from?: number): any[] { + return []; + } + + public messages(from?: number): any[] { + return []; + } + + public recordCommand(command: CommandIncoming): string { + return command.correlation_id ? command.correlation_id : guid(); + return ""; + } + + public recordEvent(event: EventIncoming): string { + return event.extensions.correlation_id ? event.extensions.correlation_id : guid(); + } + + public recordMessage(id: string, correlationId: string, message: any): string { + return id; + } +} diff --git a/lib/internal/transport/cluster/ClusterWorkerRequestProcessor.ts b/lib/internal/transport/cluster/ClusterWorkerRequestProcessor.ts index af98d65f1..9912243a3 100644 --- a/lib/internal/transport/cluster/ClusterWorkerRequestProcessor.ts +++ b/lib/internal/transport/cluster/ClusterWorkerRequestProcessor.ts @@ -27,6 +27,7 @@ import { CommandInvocation } from "../../invoker/Payload"; import { gc, heapDump, + mtrace, } from "../../util/memory"; import { poll } from "../../util/poll"; import { @@ -80,6 +81,8 @@ export class ClusterWorkerRequestProcessor extends AbstractRequestProcessor { gc(); } else if (msg.type === "atomist:heapdump") { heapDump(); + } else if (msg.type === "atomist:mtrace") { + mtrace(); } else if (msg.type === "atomist:shutdown") { logger.debug("Received shutdown message"); this.shutdownInitiated = true; diff --git a/lib/internal/transport/cluster/messages.ts b/lib/internal/transport/cluster/messages.ts index 1d978cd36..a6bab227d 100644 --- a/lib/internal/transport/cluster/messages.ts +++ b/lib/internal/transport/cluster/messages.ts @@ -12,7 +12,7 @@ export interface MasterMessage { } export interface MasterManagementMessage { - type: "atomist:gc" | "atomist:heapdump"; + type: "atomist:gc" | "atomist:heapdump" | "atomist:mtrace"; } export interface WorkerMessage { diff --git a/lib/internal/transport/express/ExpressServer.ts b/lib/internal/transport/express/ExpressServer.ts index f3493c7fc..b99b17d8b 100644 --- a/lib/internal/transport/express/ExpressServer.ts +++ b/lib/internal/transport/express/ExpressServer.ts @@ -25,6 +25,7 @@ import { info } from "../../util/info"; import { gc, heapDump, + mtrace, } from "../../util/memory"; import { metrics } from "../../util/metric"; import { guid } from "../../util/string"; @@ -59,6 +60,9 @@ export class ExpressServer { this.exp.get(`${ApiBase}/health`, cors(), (req, res) => { const h = health(); + if (h.status !== HealthStatus.Up) { + logger.warn(`Health status: ${JSON.stringify(h)}`); + } res.status(h.status === HealthStatus.Up ? 200 : 500).json(h); }); @@ -94,6 +98,13 @@ export class ExpressServer { res.sendStatus(201); }); + this.exp.options(`${ApiBase}/memory/mtrace`, cors()); + this.exp.put(`${ApiBase}/memory/mtrace`, cors(), this.adminRoute, this.authenticate, + (req, res) => { + mtrace(); + res.sendStatus(201); + }); + this.exp.options(`${ApiBase}/log/events`, cors()); this.exp.get(`${ApiBase}/log/events`, cors(), this.adminRoute, this.authenticate, (req, res) => { diff --git a/lib/internal/transport/websocket/DefaultWebSocketRequestProcessor.ts b/lib/internal/transport/websocket/DefaultWebSocketRequestProcessor.ts index 409427a1a..6f427de57 100644 --- a/lib/internal/transport/websocket/DefaultWebSocketRequestProcessor.ts +++ b/lib/internal/transport/websocket/DefaultWebSocketRequestProcessor.ts @@ -31,7 +31,6 @@ import { } from "../RequestProcessor"; import { WebSocketLifecycle } from "./WebSocketLifecycle"; import { - sendMessage, WebSocketCommandMessageClient, WebSocketEventMessageClient, } from "./WebSocketMessageClient"; diff --git a/lib/internal/transport/websocket/WebSocketMessageClient.ts b/lib/internal/transport/websocket/WebSocketMessageClient.ts index 2038c8a3d..ecc1eab38 100644 --- a/lib/internal/transport/websocket/WebSocketMessageClient.ts +++ b/lib/internal/transport/websocket/WebSocketMessageClient.ts @@ -36,14 +36,13 @@ import { } from "../RequestProcessor"; import { WebSocketLifecycle } from "./WebSocketLifecycle"; -export abstract class AbstractWebSocketMessageClient extends MessageClientSupport { - - constructor(private readonly ws: WebSocketLifecycle, - private readonly request: CommandIncoming | EventIncoming, - private readonly correlationId: string, - private readonly team: { id: string, name?: string }, - private readonly source: Source, - private readonly configuration: Configuration) { +export abstract class AbstractMessageClient extends MessageClientSupport { + + constructor(protected readonly request: CommandIncoming | EventIncoming, + protected readonly correlationId: string, + protected readonly team: { id: string, name?: string }, + protected readonly source: Source, + protected readonly configuration: Configuration) { super(); } @@ -56,8 +55,7 @@ export abstract class AbstractWebSocketMessageClient extends MessageClientSuppor destinations: Destination | Destination[], options: MessageOptions = {}): Promise { if (!!msg && (msg as HandlerResponse).content_type === "application/x-atomist-continuation+json") { - this.ws.send(msg); - return Promise.resolve(msg); + return this.sendResponse(msg).then(() => msg); } const ts = this.ts(options); @@ -187,10 +185,11 @@ export abstract class AbstractWebSocketMessageClient extends MessageClientSuppor response.body = JSON.stringify(msg); response.id = (options.id ? options.id : guid()); } - this.ws.send(response); - return Promise.resolve(response); + return this.sendResponse(response).then(() => response); } + protected abstract sendResponse(response: any): Promise; + private ts(options: MessageOptions): number { if (options.id) { if (options.ts) { @@ -204,6 +203,21 @@ export abstract class AbstractWebSocketMessageClient extends MessageClientSuppor } } +export class AbstractWebSocketMessageClient extends AbstractMessageClient { + constructor(protected readonly ws: WebSocketLifecycle, + protected readonly request: CommandIncoming | EventIncoming, + protected readonly correlationId: string, + protected readonly team: { id: string, name?: string }, + protected readonly source: Source, + protected readonly configuration: Configuration) { + super(request, correlationId, team, source, configuration); + } + + protected async sendResponse(response: any): Promise { + this.ws.send(response); + } +} + export class WebSocketCommandMessageClient extends AbstractWebSocketMessageClient { constructor(request: CommandIncoming, ws: WebSocketLifecycle, configuration: Configuration) { diff --git a/lib/internal/util/memory.ts b/lib/internal/util/memory.ts index 02ee7f7f5..1ff25ee9d 100644 --- a/lib/internal/util/memory.ts +++ b/lib/internal/util/memory.ts @@ -22,6 +22,30 @@ export function initMemoryMonitoring(dataDirectory: string = `${appRoot.path}/he } } +/** + * Create a head dump that can be downloaded and used to profile head usage. + * @returns {string} + */ +export function mtrace(): string { + try { + logger.debug("Memory statistics '%j'", memoryUsage()); + const mtrace = require("mtrace"); + gc(); + const filename = mtrace.mtrace(); + if (!!filename) { + logger.debug("mtrace dump written to '%s'", filename); + } else { + logger.warn("mtrace not supported"); + } + broadcast({ type: "atomist:gc" }); + broadcast({ type: "atomist:mtrace" }); + return name; + } catch (err) { + logger.error("Failed to initialise mtrace. Required 'mtrace' module is missing or can't be" + + " loaded. Please install with 'npm install --save mtrace'"); + } +} + /** * Create a head dump that can be downloaded and used to profile head usage. * @returns {string} @@ -35,9 +59,11 @@ export function heapDump(): string { if (!fs.existsSync(DataDirectory)) { fs.mkdirSync(DataDirectory); } + gc(); heapdump.writeSnapshot(`${DataDirectory}/${name}`, (err, filename) => { logger.debug("Heap dump written to '%s'", filename); }); + broadcast({ type: "atomist:gc" }); broadcast({ type: "atomist:heapdump" }); return name; } catch (err) {